diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d0cc02c..c19477e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,14 @@ a nice looking [Changelog](http://keepachangelog.com). * Dropping `*_conditions` methods. (will use Active Record `or` syntax) * Do not automatically call custom `ancestry` order clauses for scopes. -## Version [3.0.3] 2018-04-24 +## Version [3.0.4] 2018-10-27 + +## Fixes + +* Properly detects non-integer columns (thx @adam101) +* Arrange no longer drops nodes due to missing parents (thx @trafium) + +## Version [3.0.3] 2018-10-23 This branch (3.x) should still be compatible with rails 3 and 4. Rails 5.1 and 5.2 support were introduced in this version, but ongoing support @@ -203,9 +210,10 @@ Missed 2 commits (which are feature adds) * Validations -[Unreleased]: https://github.com/stefankroes/ancestry/compare/v3.0.3...HEAD -[4.0.0]: https://github.com/stefankroes/ancestry/compare/v3.0.3...HEAD -[3.0.3]: https://github.com/stefankroes/ancestry/compare/v3.0.1...v3.0.2 +[Unreleased]: https://github.com/stefankroes/ancestry/compare/v3.0.4...HEAD +[4.0.0]: https://github.com/stefankroes/ancestry/compare/v3.0.4...HEAD +[3.0.4]: https://github.com/stefankroes/ancestry/compare/v3.0.3...v3.0.4 +[3.0.3]: https://github.com/stefankroes/ancestry/compare/v3.0.2...v3.0.3 [3.0.2]: https://github.com/stefankroes/ancestry/compare/v3.0.1...v3.0.2 [3.0.1]: https://github.com/stefankroes/ancestry/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/stefankroes/ancestry/compare/v2.2.2...v3.0.0 diff --git a/lib/ancestry/version.rb b/lib/ancestry/version.rb index 19b4ab18..213469e4 100644 --- a/lib/ancestry/version.rb +++ b/lib/ancestry/version.rb @@ -1,3 +1,3 @@ module Ancestry - VERSION = "3.0.3" + VERSION = "3.0.4" end