Skip to content

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
Lots of new stuff in 1.5.0! We've gotten Rails 5.x support in place, as
well as adding 2 new options. "clustering" will draw a box around models
contained in the same name space, helping to visually organize areas of
concern. "only_models_include_depth" - although awkwardly named - will
restrict the depth of graphing to the supplied value.

* New option of 'clustering' by namespace (#205)
* Support for 'only_models_include_depth' option (#219)
* Added basic support for non-Rails apps (#208)
* Avoid duplicate specializations when using STI with an abstract base class (#211)
* Fixed Ruby 2.1 deprecation warnings (#209)
* Fixes to tests (#210, #213)
* Various documentation fixes (#203, #212)
  • Loading branch information
kerrizor committed Aug 10, 2016
1 parent a75d23c commit f1f74e3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.5.0
-----
* New option of 'clustering' by namespace (#205)
* Support for 'only_models_include_depth' option (#219)
* Added basic support for non-Rails apps (#208)
* Avoid duplicate specializations when using STI with an abstract base class (#211)
* Fixed Ruby 2.1 deprecation warnings (#209)
* Fixes to tests (#210, #213)
* Various documentation fixes (#203, #212)

1.4.7
-----
* Fixed grouping of associations (#190)
Expand Down
2 changes: 1 addition & 1 deletion lib/rails_erd/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RailsERD
VERSION = "1.4.7"
VERSION = "1.5.0"
BANNER = "RailsERD #{VERSION}"
end

0 comments on commit f1f74e3

Please sign in to comment.