From 56c9da0e37eeafb5c48e13f17eacacefd8a8def4 Mon Sep 17 00:00:00 2001 From: Sergey Nartimov Date: Tue, 13 Feb 2018 13:05:01 +0300 Subject: [PATCH] Release 2.2.0 --- CHANGELOG.md | 11 +++++++++++ lib/enumerize/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58baa83e..6e8314ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ ### bug fix +## 2.2.0 (February 13, 2018) + +### enhancements + +* Add integration with active_interaction. (by [@runephilosof](https://github.com/runephilosof)) +* Allow using `plugin :enumerize` with Sequel. (by [@jnylen](https://github.com/jnylen)) +* Support ActiveModel::Attributes from Rails 5.2. (by [@troter](https://github.com/troter)) +* Support Sequel 5.2.0. (by [@troter](https://github.com/troter)) + +### bug fix + * Fix RailsAdmin integration when enumerated field used on edit form and enumerated value wasn't set. (by [@nashby](https://github.com/nashby)) * Fallback to a raw passed value instead of nil if AR type can't find value in the attribute. (by [@nashby](https://github.com/nashby)) diff --git a/lib/enumerize/version.rb b/lib/enumerize/version.rb index f76ae3da..f80bc04e 100644 --- a/lib/enumerize/version.rb +++ b/lib/enumerize/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Enumerize - VERSION = '2.1.2' + VERSION = '2.2.0' end