diff --git a/CHANGELOG.md b/CHANGELOG.md index daa0b59..c737511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.0.1] 2024-04-25 + +- Fix `unaccent` gem missing when installing the gem + ## [1.0.0] 2024-03-31 - Drop support for Ruby 2.7 diff --git a/Gemfile.lock b/Gemfile.lock index 4c35c5e..ee9c199 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - atlasq (1.0.0) + atlasq (1.0.1) tty-pager (~> 0.14) GEM diff --git a/README.md b/README.md index 1aa1ea7..0ef4c53 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ OPTIONS : Display this page -v/--version - : Display the version (1.0.0) + : Display the version (1.0.1) -d/--debug : Display debug output diff --git a/lib/atlasq/version.rb b/lib/atlasq/version.rb index 2c1807e..05125a8 100644 --- a/lib/atlasq/version.rb +++ b/lib/atlasq/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Atlasq - VERSION = "1.0.0" + VERSION = "1.0.1" end