Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prep for 3.2 release #509

Merged
merged 1 commit into from
Sep 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
Doing our best at supporting [SemVer](http://semver.org/) with
a nice looking [Changelog](http://keepachangelog.com).

## Version [HEAD] <small>now</small>

* dropped support for rails 4.2 and 5.0

## Versions [3.2.0] <small>2020-09-23</small>

* introduce i18n
* pg sql optimization for ancestry changes(thx @suonlight and @geis)
* pg sql optimization for sorting (thx @brendon and @d-m-u)
* fix to humanise model name (thx @mkllnk)
* able to convert to ancestry from a parent_id column with a different name
* documentation fixes for better diagrams and grammar (thx @dtamais, @d-m-u, and @CamilleDrapier)

## Versions [3.1.0] <small>2020-08-03</small>

* `:primary_key_format` method lets you change syntax. good for uuids.
Expand Down Expand Up @@ -231,6 +244,8 @@ Missed 2 commits (which are feature adds)
* Validations


[HEAD]: https://github.com/stefankroes/ancestry/compare/v3.2.0...HEAD
[3.1.0]: https://github.com/stefankroes/ancestry/compare/v3.1.0...v3.2.0
[3.1.0]: https://github.com/stefankroes/ancestry/compare/v3.0.7...v3.1.0
[3.0.7]: https://github.com/stefankroes/ancestry/compare/v3.0.6...v3.0.7
[3.0.6]: https://github.com/stefankroes/ancestry/compare/v3.0.5...v3.0.6
Expand Down
2 changes: 1 addition & 1 deletion lib/ancestry/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Ancestry
VERSION = "3.1.0"
VERSION = "3.2.0"
end