Add Chat.{promote, restrict}_member.
We could also think about adding ChatMember.{kick, unban, promote, restrict}, though the usecase is small, as a ChatMember is only returned by get_chat_member, so you'd have to do something like
update.effective_chat.get_member(user_id).kick()
which is longer than
update.effective_chat.kick_member(user_id)