From 40fa2de8adcc88e6e51f24ae93074405cab58e9b Mon Sep 17 00:00:00 2001 From: Leonardo Tegon Date: Fri, 4 Oct 2019 11:43:30 -0300 Subject: [PATCH] Prepare for `5.0.1` release --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/simple_form/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f11589085..3c8d10a5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +## 5.0.1 + ### Bug fix * Replace `_url` with `remote_url` when trying to guess file inputs [@tegon](https://github.com/tegon). This has the side-effect of changing carrierwave's support from `0.2.1` to `0.2.2`. diff --git a/Gemfile.lock b/Gemfile.lock index 50bd0680f..7cef40593 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simple_form (5.0.0) + simple_form (5.0.1) actionpack (>= 5.0) activemodel (>= 5.0) diff --git a/lib/simple_form/version.rb b/lib/simple_form/version.rb index 53f698631..1f1023918 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.0".freeze + VERSION = "5.0.1".freeze end