Como resolver o aviso do bundler de atualização nos trilhos ao implantar no heroku?

Como resolvo o seguinte aviso? Atualizei minha versão ruby para 2.3.1 e a versão rails para 4.2.6. Recebo esse aviso quando pressiono meu aplicativo no heroku.

remote:        Cleaning up the bundler cache.
remote:        Warning: the running version of Bundler is older than the version that created the lockfile. We suggest you upgrade to the latest version of Bundler by running `gem install bundler`.
remote:        Removing mime-types-data (3.2016.0221)

Eu removi o Gemfile.lock e executei a instalação do pacote e também tentei atualizar o pacote, mas o aviso nunca desaparece.

suramai@rails-tutorial:~/workspace/converse (master) $ gem install bundler
Successfully installed bundler-1.12.4
1 gem installed
suramai@rails-tutorial:~/workspace/converse (master) $

questionAnswers(1)

yourAnswerToTheQuestion