diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f1c1e58..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.0" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 45a240e..dfc0cec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.0](https://github.com/a-chacon/rails-url-shortener/compare/rails_url_shortener/v0.5.0...rails_url_shortener/v0.6.0) (2025-10-20) + + +### Features + +* **generator:** simplify installation by reducing setup steps ([#25](https://github.com/a-chacon/rails-url-shortener/issues/25)) ([303b178](https://github.com/a-chacon/rails-url-shortener/commit/303b1780fb1ecda0b014f72cbe122cdde7a1146e)) + ## [0.5.0](https://github.com/a-chacon/rails-url-shortener/compare/rails_url_shortener/v0.4.0...rails_url_shortener/v0.5.0) (2025-07-20) diff --git a/Gemfile.lock b/Gemfile.lock index 4241c1b..b7c18d4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rails_url_shortener (0.5.0) + rails_url_shortener (0.6.0) browser (>= 5.3.0) http (>= 5.1.0) diff --git a/lib/rails_url_shortener/version.rb b/lib/rails_url_shortener/version.rb index 4dfd7a9..e273d84 100644 --- a/lib/rails_url_shortener/version.rb +++ b/lib/rails_url_shortener/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RailsUrlShortener - VERSION = '0.5.0' + VERSION = '0.6.0' end