From 05d7de01269737952944da414aa07ff3dccea40b Mon Sep 17 00:00:00 2001 From: James Couball Date: Mon, 12 Oct 2020 09:02:29 -0700 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 22 ++++++++++++++-------- lib/ruby_git/version.rb | 2 +- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16436be..c130bd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,27 +1,33 @@ # Change Log -## [v0.1.3](https://github.com/main-branch/ruby_git/releases/tag/v0.1.3) (2020-09-24) +## [v0.2.0](https://github.com/main-branch/ruby_git/releases/tag/v0.2.0) (2020-10-12) -[Full Changelog](https://github.com/main-branch/ruby_git/compare/v0.1.2...v0.1.3) +[Full Changelog](https://github.com/main-branch/ruby_git/compare/v0.1.3...v0.2.0) **Merged pull requests:** -- Add Gem badge and correct home page URL [\#10](https://github.com/main-branch/ruby_git/pull/10) ([jcouball](https://github.com/jcouball)) +- Add Worktree class and creation methods init, clone, and open [\#17](https://github.com/main-branch/ruby_git/pull/17) ([jcouball](https://github.com/jcouball)) +- Add Slack badge to README [\#16](https://github.com/main-branch/ruby_git/pull/16) ([jcouball](https://github.com/jcouball)) +- Push code coverage information to CodeClimate [\#14](https://github.com/main-branch/ruby_git/pull/14) ([jcouball](https://github.com/jcouball)) +- Move the ruby\_git repository to the main-branch GitHub organization. [\#13](https://github.com/main-branch/ruby_git/pull/13) ([jcouball](https://github.com/jcouball)) +- Add CODEOWNERS file [\#12](https://github.com/main-branch/ruby_git/pull/12) ([jcouball](https://github.com/jcouball)) +- Release v0.1.3 [\#11](https://github.com/main-branch/ruby_git/pull/11) ([jcouball](https://github.com/jcouball)) -## [v0.1.2](https://github.com/main-branch/ruby_git/releases/tag/v0.1.2) (2020-09-24) +## [v0.1.3](https://github.com/main-branch/ruby_git/releases/tag/v0.1.3) (2020-09-24) -[Full Changelog](https://github.com/main-branch/ruby_git/compare/0.1.2...v0.1.2) +[Full Changelog](https://github.com/main-branch/ruby_git/compare/v0.1.2...v0.1.3) **Merged pull requests:** -- Release v0.1.2 [\#9](https://github.com/main-branch/ruby_git/pull/9) ([jcouball](https://github.com/jcouball)) +- Add Gem badge and correct home page URL [\#10](https://github.com/main-branch/ruby_git/pull/10) ([jcouball](https://github.com/jcouball)) -## [0.1.2](https://github.com/main-branch/ruby_git/releases/tag/0.1.2) (2020-09-24) +## [v0.1.2](https://github.com/main-branch/ruby_git/releases/tag/v0.1.2) (2020-09-24) -[Full Changelog](https://github.com/main-branch/ruby_git/compare/v0.1.1...0.1.2) +[Full Changelog](https://github.com/main-branch/ruby_git/compare/v0.1.1...v0.1.2) **Merged pull requests:** +- Release v0.1.2 [\#9](https://github.com/main-branch/ruby_git/pull/9) ([jcouball](https://github.com/jcouball)) - Update instructions for creating releases and updating the changelog [\#8](https://github.com/main-branch/ruby_git/pull/8) ([jcouball](https://github.com/jcouball)) - Changes requested in documentation review [\#7](https://github.com/main-branch/ruby_git/pull/7) ([jcouball](https://github.com/jcouball)) - Set and retrieve the path to the git binary used by this library [\#6](https://github.com/main-branch/ruby_git/pull/6) ([jcouball](https://github.com/jcouball)) diff --git a/lib/ruby_git/version.rb b/lib/ruby_git/version.rb index ac1f23e..0d9b44f 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.3' + VERSION = '0.2.0' end