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

Bump version to 0.6.0 and update changelog #30

Merged
merged 1 commit into from Sep 18, 2015
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGES.md
@@ -1,10 +1,16 @@
Changes to `paper_trail_manager`
================================

* 0.6.0
* Add support for linking changes to user records via `PaperTrailManager.whodunnit_name_method` and `PaperTrailManager.user_path_method`
* Add new `PaperTrailManager.item_name_method` configuration option
* Add support for paper_trail 4.x
* Refactoring, code simplification, and performance improvements

* 0.5.0
* Added support for pagination with [Kaminari](https://github.com/amatsuda/kaminari) in addition to [will_paginate](https://github.com/mislav/will_paginate).
* Add support for pagination with [Kaminari](https://github.com/amatsuda/kaminari) in addition to [will_paginate](https://github.com/mislav/will_paginate).
* **[!]** Removed direct dependency on will_paginate. You must now include either `will_paginate` or `kaminari` in your Gemfile.
* Fixed a bug with route generation when paper_trail_manager is used within another Rails engine.
* Fix a bug with route generation when paper_trail_manager is used within another Rails engine.

* 0.4.0
* Allow configuration of ChangesController's parent class, route helpers, and layout
Expand Down
2 changes: 1 addition & 1 deletion paper_trail_manager.gemspec
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = "paper_trail_manager"
spec.version = "0.5.0"
spec.version = "0.6.0"
spec.authors = ["Igal Koshevoy", "Reid Beels"]
spec.authors = ["mail@reidbeels.com"]
spec.summary = "A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications."
Expand Down