diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2537c1f..f1c1e58 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ad972f1..45a240e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [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) + + +### Features + +* let the initializer choose whether save or not visits. ([#20](https://github.com/a-chacon/rails-url-shortener/issues/20)) ([2f30898](https://github.com/a-chacon/rails-url-shortener/commit/2f3089886c6e6a7e2d26d80fb1596e1f7b327abc)) + + +### Bug Fixes + +* update dependencies and lint errors ([348c6f4](https://github.com/a-chacon/rails-url-shortener/commit/348c6f497a99382a594e21bd2a7307980289a1bc)) + ## [0.4.0](https://github.com/a-chacon/rails-url-shortener/compare/rails_url_shortener/v0.3.0...rails_url_shortener/v0.4.0) (2025-05-08) diff --git a/Gemfile.lock b/Gemfile.lock index f5ae86b..4241c1b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rails_url_shortener (0.4.0) + rails_url_shortener (0.5.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 b15e669..4dfd7a9 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.4.0' + VERSION = '0.5.0' end