From ea9ed803221ec0696a286b7b5b0107332086b4b9 Mon Sep 17 00:00:00 2001 From: Felipe Renan Date: Thu, 6 Feb 2020 20:44:43 +0200 Subject: [PATCH] Prepare for `5.0.2` version --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 2 +- lib/simple_form/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c722a20..4d95ba1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Unreleased +## 5.0.2 + +### Enhancements +* Remove instruction to use form-inline class. [@goalaleo](https://github.com/goalaleo) +* Added RichTextAreaInput for ActionText. [itsterry](https://github.com/itsterry) +* Skip valid_class check if no class defined. [TALlama](https://github.com/TALlama) + ### Bug fix * Fix 'aria-required' field generated by prompt. [@CarlosAlbertoSantos](https://github.com/CarlosAlbertoSantos) diff --git a/Gemfile.lock b/Gemfile.lock index 375c5c82..0e503ebb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simple_form (5.0.1) + simple_form (5.0.2) actionpack (>= 5.0) activemodel (>= 5.0) diff --git a/lib/simple_form/version.rb b/lib/simple_form/version.rb index 1f102391..7dda34e1 100644 --- a/lib/simple_form/version.rb +++ b/lib/simple_form/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module SimpleForm - VERSION = "5.0.1".freeze + VERSION = "5.0.2".freeze end