From 679bc6680b920f73fb471a6f6589b5b88b8fc80f Mon Sep 17 00:00:00 2001 From: Chris Hunt Date: Tue, 22 Oct 2013 12:34:34 -0700 Subject: [PATCH] Bump to v2.0.0 --- CHANGELOG.md | 12 ++++++++++++ Gemfile.lock | 2 +- lib/github/auth/version.rb | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b23174..11b9e27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +##v2.0.0 +*2013-10-22* + +[\[22 commits\]](https://github.com/chrishunt/github-auth/compare/v1.2.0...v2.0.0) + +*note:* Option syntax has changed in this release as a result of switching to +`OptionParser`. See the [`README`](https://github.com/chrishunt/github-auth/blob/master/README.md) +for usage instructions. + +- [Add `--list` command](https://github.com/chrishunt/github-auth/pull/14) +- [Use `OptionParser` for parsing CLI options](https://github.com/chrishunt/github-auth/pull/16) + ##v1.2.0 *2013-08-20* diff --git a/Gemfile.lock b/Gemfile.lock index 61d63b6..dd332e9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - github-auth (1.2.0) + github-auth (2.0.0) httparty (~> 0.11.0) GEM diff --git a/lib/github/auth/version.rb b/lib/github/auth/version.rb index fb6e119..8a22c9b 100644 --- a/lib/github/auth/version.rb +++ b/lib/github/auth/version.rb @@ -1,5 +1,5 @@ module Github module Auth - VERSION = "1.2.0" + VERSION = "2.0.0" end end