From ae500bf64e5287aecbc23182665ecaa06a7bc4fa Mon Sep 17 00:00:00 2001 From: Patrick Negri Date: Tue, 23 Aug 2022 20:31:31 -0300 Subject: [PATCH] Version 0.9.0 --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- lib/uuid_attribute/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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