diff --git a/CHANGELOG.md b/CHANGELOG.md index e981e5e..c5c16ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,29 @@ # Changelog -## [Unreleased](https://github.com/reenhanced/gitreflow/tree/HEAD) +## [v0.9.6](https://github.com/reenhanced/gitreflow/tree/v0.9.6) (2021-11-05) -[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.4...HEAD) +[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.5...HEAD) + +**Implemented enhancements:** + +- Use GitHub PR Templates? [\#251](https://github.com/reenhanced/gitreflow/issues/251) + +**Merged pull requests:** + +- Introduce configurable PR and merge commit templates [\#252](https://github.com/reenhanced/gitreflow/pull/252) ([codenamev](https://github.com/codenamev)) + +## [v0.9.5](https://github.com/reenhanced/gitreflow/tree/v0.9.5) (2021-03-25) + +[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.4...v0.9.5) **Fixed bugs:** - Deprecation warnings with Ruby 2.7.0 [\#239](https://github.com/reenhanced/gitreflow/issues/239) +**Merged pull requests:** + +- Support for Ruby 3.0 [\#249](https://github.com/reenhanced/gitreflow/pull/249) ([codenamev](https://github.com/codenamev)) + ## [v0.9.4](https://github.com/reenhanced/gitreflow/tree/v0.9.4) (2020-11-10) [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.3...v0.9.4) diff --git a/Gemfile.lock b/Gemfile.lock index 218fe47..0dd64e6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - git_reflow (0.9.5) + git_reflow (0.9.6) bundler (>= 1.10.0) codenamev_bitbucket_api (= 0.4.1) colorize (>= 0.8.1) @@ -68,7 +68,7 @@ GEM faraday-http-cache (2.2.0) faraday (>= 0.8) faraday-net_http (1.0.1) - faraday_middleware (1.0.0) + faraday_middleware (1.2.0) faraday (~> 1.0) fiber-local (1.0.0) github_api (0.19.0) @@ -93,16 +93,16 @@ GEM httpclient (2.8.3) i18n (1.8.9) concurrent-ruby (~> 1.0) - jwt (2.2.2) + jwt (2.3.0) method_source (1.0.0) - mini_portile2 (2.5.0) + mini_portile2 (2.6.1) minitest (5.14.4) multi_json (1.15.0) multi_xml (0.6.0) multipart-post (2.1.1) nio4r (2.5.7) - nokogiri (1.11.2) - mini_portile2 (~> 2.5.0) + nokogiri (1.12.5) + mini_portile2 (~> 2.6.1) racc (~> 1.4) oauth2 (1.4.7) faraday (>= 0.8, < 2.0) @@ -124,7 +124,7 @@ GEM coderay (~> 1.1) method_source (~> 1.0) public_suffix (4.0.6) - racc (1.5.2) + racc (1.6.0) rack (2.2.3) rainbow (3.0.0) rake (13.0.3) diff --git a/lib/git_reflow/version.rb b/lib/git_reflow/version.rb index f7226d7..d2f8f84 100644 --- a/lib/git_reflow/version.rb +++ b/lib/git_reflow/version.rb @@ -1,3 +1,3 @@ module GitReflow - VERSION = "0.9.5" + VERSION = "0.9.6" end