diff --git a/CHANGELOG.md b/CHANGELOG.md index c442510..4ed1100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Unreleased +## 0.9.0 - 2022-08-23 + +* Improved tests, now testing all ruby and supported rails versions +* Added support for PostgreSQL and SQLite + ## 0.2.0 - 2022-08-20 * Added tests diff --git a/Gemfile.lock b/Gemfile.lock index 5d091e3..9897f48 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - uuid_attribute (0.2.0) + uuid_attribute (0.9.0) activemodel (>= 5.2) activerecord (>= 5.2) diff --git a/lib/uuid_attribute/version.rb b/lib/uuid_attribute/version.rb index e9dd6ff..8ddec99 100644 --- a/lib/uuid_attribute/version.rb +++ b/lib/uuid_attribute/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module UuidAttribute - VERSION = "0.2.0" + VERSION = "0.9.0" end