No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
CLI tool to create version bump commit and tag with newest version in a Git repository. Versioning is based on [Semantic Versioning](http://semver.org/). Version bump types include MAJOR, MINOR, and PATCH. Once installed gem can be used in a Git repository by running `versionify bump TYPE`
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 10
~> 3
~> 0.36

Runtime

~> 1.2
~> 0.19
 Project Readme

Gem Version Code Climate Test Coverage Build Status

GitVersionBumper

CLI tool to create version bump commit and tag with newest version in a Git repository. Versioning is based on Semantic Versioning. Version bump types include MAJOR, MINOR, and PATCH.

Installation

Add this line to your application's Gemfile:

gem 'git_version_bumper'

And then execute:

$ bundle

Or install it yourself as:

$ gem install git_version_bumper

Usage

From within your Git repository you can run the gem using the versionify bump command, in combination with a valid version bump type.

versionify bump TYPE

Version Bump Types

Valid version bump types include:

  • MAJOR
  • MINOR
  • PATCH

Contributing

  1. Fork it ( https://github.com/tmr08c/git_version_bumper/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request