From 51a942cdac9847118f5cfeec93ae61c6e8f52f03 Mon Sep 17 00:00:00 2001 From: Kerri Miller Date: Tue, 14 May 2019 02:32:04 -0500 Subject: [PATCH 1/2] Update with notes for v1.6.0 --- CHANGES.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 21e104a3..f41d3fdb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,22 @@ +1.6.0 +----- +* Dropping support for Ruby < 2.2 and Rails < 4.2 (#323) +* Added early support for Rails 6.0 (#329) +* Documentation updates (#268, #269, #276, #288, #295) +* Removed restriction that allowed to exclude only models from a diagram (#279) +* Added additional margins to cluster (#280) +* Deprecate safe_level of ERB.new in Ruby 2.6 (#297) +* Fixed only_recursion_depth option failure when used from rake erd task (#266, #324) +* Allow extra config files to be listed via cli (#275, #326) +* Fixed long-standing segfault issue by removing identifier from association_identity (#296, #327) +* Fix for bug when parameter to only option is a single model (#300, #328) +* Properly handle custom version classes. (#304, #325) +* Fixed a warning from Ruby RE ambiguous arguments (#315) +* Updated gem dependencies (#311, #313) + 1.5.2 ----- - * Disable calls to `eager_load_namespaces` < Rails 5 (#263) +* Disable calls to `eager_load_namespaces` < Rails 5 (#263) 1.5.1 ----- From d4d3027b277ab2c6657f58b81157d8683f5a55ef Mon Sep 17 00:00:00 2001 From: Kerri Miller Date: Tue, 14 May 2019 02:32:41 -0500 Subject: [PATCH 2/2] Bump version to 1.6.0 --- lib/rails_erd/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rails_erd/version.rb b/lib/rails_erd/version.rb index 1980f42f..ee9b1903 100644 --- a/lib/rails_erd/version.rb +++ b/lib/rails_erd/version.rb @@ -1,4 +1,4 @@ module RailsERD - VERSION = "1.5.2" + VERSION = "1.6.0" BANNER = "RailsERD #{VERSION}" end