diff --git a/CHANGELOG.md b/CHANGELOG.md index 1031534..c4303b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.2.2 (2018-07-29) +### Fixed +- Handle exception raised when using a letter-only alphabet and attempting to + decode an integer ID from [@Drakula2k](https://github.com/Drakula2k) ([#54](https://github.com/jcypret/hashid-rails/pull/54)). + ## 1.2.1 (2018-01-13) - Found issue where unsigned hashids with `find` did not fall back to passed in ID ([#46](https://github.com/jcypret/hashid-rails/pull/46)). - Move finder specs to a shared example run against both the signed and unsigned hashids. diff --git a/lib/hashid/rails/version.rb b/lib/hashid/rails/version.rb index fc154b5..b95641d 100644 --- a/lib/hashid/rails/version.rb +++ b/lib/hashid/rails/version.rb @@ -2,6 +2,6 @@ module Hashid module Rails - VERSION = "1.2.1" + VERSION = "1.2.2" end end