Blog Renatojobal
← Home
Software Development

Releasing a new version with Git

Once the tests have run and everything works fine:

  1. Bump the version number

    Bump the version number

  2. Commit the file

    git add .
    git commit -m ":bookmark: new version 3.1.0"
    
  3. Create a tag with the version number

    git tag v3.1.0
    
  4. Push the commit and the tag to GitHub

    git push origin development
    git push origin --tags
    
  5. Open the Pull Request