From aafb3a979b5a189849e32af2c1d118ee9202f599 Mon Sep 17 00:00:00 2001 From: Jason Fleetwood-Boldt Date: Sat, 9 Oct 2021 22:03:31 -0400 Subject: [PATCH] notes for v0.2.5 --- README.md | 6 ++++++ lib/hotglue/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f5d9a1bd..d57a6335 100644 --- a/README.md +++ b/README.md @@ -492,6 +492,12 @@ Obviously, the created controller will always have this base controller as its s # VERSION HISTORY +#### 2021-10-09 - v-0.2.5 - this version is all about developer happyness: + - significant fixes for the behavioral (system) specs. they now create new & update interactions + for (almost) all field types + - the install generator now checks your layouts/application.html.erb for `render partial: 'layouts/flash_messages' ` and adds it if it isn't there already + - the install generator also checks your spec/rails_helper for `config.include FactoryBot::Syntax::Methods` and adds it at the top of the Rspec configure block if it isn't there + #### 2021-10-07 - v0.2.4 - removes erroneous icons display in delete buttos (these don't work inside of button_to); - adds support for ENUM types direclty on your field types - you must use activerecord-pgenum diff --git a/lib/hotglue/version.rb b/lib/hotglue/version.rb index 75c38598..086c1bcb 100644 --- a/lib/hotglue/version.rb +++ b/lib/hotglue/version.rb @@ -1,3 +1,3 @@ module HotGlue - VERSION = '0.2.4' + VERSION = '0.2.5' end