From f723acfb54d9ea9b6bf33019399af51a825bfd23 Mon Sep 17 00:00:00 2001 From: James Couball Date: Thu, 24 Sep 2020 10:31:50 -0700 Subject: [PATCH] Release v0.1.3 --- CHANGELOG.md | 18 +++++++++++++++++- RELEASING.md | 2 +- lib/ruby_git/version.rb | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99b2df9..ca05109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,24 @@ # Change Log +## [v0.1.3](https://github.com/jcouball/ruby_git/releases/tag/v0.1.3) (2020-09-24) + +[Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.2...v0.1.3) + +**Merged pull requests:** + +- Add Gem badge and correct home page URL [\#10](https://github.com/jcouball/ruby_git/pull/10) ([jcouball](https://github.com/jcouball)) + ## [v0.1.2](https://github.com/jcouball/ruby_git/releases/tag/v0.1.2) (2020-09-24) -[Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.1...v0.1.2) +[Full Changelog](https://github.com/jcouball/ruby_git/compare/0.1.2...v0.1.2) + +**Merged pull requests:** + +- Release v0.1.2 [\#9](https://github.com/jcouball/ruby_git/pull/9) ([jcouball](https://github.com/jcouball)) + +## [0.1.2](https://github.com/jcouball/ruby_git/releases/tag/0.1.2) (2020-09-24) + +[Full Changelog](https://github.com/jcouball/ruby_git/compare/v0.1.1...0.1.2) **Merged pull requests:** diff --git a/RELEASING.md b/RELEASING.md index 50448b9..8276fbd 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -27,7 +27,7 @@ version number and (2) update the CHANGELOG.md, and (3) tag the release. * `git add lib/ruby_git/version.rb CHANGELOG.md` * Commit, tag, and push changes to the repository - * ```git release `ruby -I lib -r ruby_git -e 'puts RubyGit::VERSION'` ``` + * ```git release v`ruby -I lib -r ruby_git -e 'puts RubyGit::VERSION'` ``` * Create a PR with these changes, have it reviewed and approved, and merged to main. diff --git a/lib/ruby_git/version.rb b/lib/ruby_git/version.rb index fe9f079..ac1f23e 100644 --- a/lib/ruby_git/version.rb +++ b/lib/ruby_git/version.rb @@ -3,5 +3,5 @@ module RubyGit # The ruby_git gem version # - VERSION = '0.1.2' + VERSION = '0.1.3' end