How to upgrade to the latest version of metabase in heroku currently i am using the 0.33.4 but it is showing to update it to the version 0.33.5

{
  "browser-info": {
    "language": "en-US",
    "platform": "Win32",
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36",
    "vendor": "Google Inc."
  },
  "system-info": {
    "java.runtime.name": "OpenJDK Runtime Environment",
    "java.runtime.version": "1.8.0_232-heroku-b09",
    "java.vendor": "Oracle Corporation",
    "java.vendor.url": "http://java.oracle.com/",
    "java.version": "1.8.0_232-heroku",
    "java.vm.name": "OpenJDK 64-Bit Server VM",
    "java.vm.version": "25.232-b09",
    "os.name": "Linux",
    "os.version": "4.4.0-1048-aws",
    "user.language": "en",
    "user.timezone": "Etc/UTC"
  },
  "metabase-info": {
    "databases": [
      "h2",
      "mysql"
    ],
    "hosting-env": "heroku",
    "application-database": "postgres",
    "run-mode": "prod",
    "version": {
      "tag": "v0.33.4",
      "date": "2019-10-07",
      "branch": "release-0.33.x",
      "hash": "9559406"
    },
    "settings": {
      "report-timezone": null
    }
  }
}

Hi @pavan
Have you seen the documentation?
https://www.metabase.com/docs/latest/operations-guide/running-metabase-on-heroku.html#deploying-new-versions-of-metabase

Thank you for replaying me,i have gone through the document but it the upgradation for the local metabase so i need for the heroku metabase

@pavan Post all the commands you make. Something tells me that you are not running pushing.

@flamber
First command is
git clone https://github.com/metabase/metabase-deploy.git
cd metabase-deploy

second command is
git remote add heroku https://git.heroku.com/your-metabase-app.git

@pavan You need to read the documentation a bit more - you are stopping before the push command. And you need to replace https://git.heroku.com/your-metabase-app.git with your Heroku repo.

@flamber how can i find the heroku repo

@pavan What is your Heroku app name (<your-repo-name>.herokuapp.com)? That’s the repo.
I would highly recommend that you use another platform than Heroku, if you are not familiar with it, since it’s somewhat advanced.
Perhaps AWS EBS would be an easier platform? Specially if you’re familiar with Docker. Or you could use any platform that supports Docker, since Metabase also provides a container.

@flamber
ok thank you