Skip to content

Commit

Permalink
Release 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Jun 27, 2015
1 parent 646b160 commit 8835492
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CLAide Changelog

## Master
## 0.8.2

##### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
claide (0.8.1)
claide (0.8.2)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/claide.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module CLAide
#
# CLAide’s version, following [semver](http://semver.org).
#
VERSION = '0.8.1'
VERSION = '0.8.2'

require 'claide/ansi'
require 'claide/argument'
Expand Down

3 comments on commit 8835492

@kylef
Copy link
Contributor

@kylef kylef commented on 8835492 Jun 29, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be 0.9.0? We've not fixed anything but instead introduced new API.

@segiddins
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was a minor enhancement that affected no existing APIs

@kylef
Copy link
Contributor

@kylef kylef commented on 8835492 Jun 29, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Patch version Z (x.y.Z | x > 0) MUST be incremented if only backwards compatible bug fixes are introduced. A bug fix is defined as an internal change that fixes incorrect behavior.

An enhancement is NOT a bug fix...

Please sign in to comment.