On a time step of length delta_t, you update the position like this:
new_position.x = old_position.x + velocity.x * delta_t; new_position.y = old_position.y + velocity.y * delta_t;
As usual, I recommend that you use a unit-length vector instead of an angle to begin with, and then you just need to multiply it by the speed.