Skip to content

Commit

Permalink
Merge pull request collectiveidea#423 from tbrisker/470
Browse files Browse the repository at this point in the history
Prepare for 4.7.0 release
  • Loading branch information
danielmorrison authored Mar 14, 2018
2 parents 3e1fd37 + c160105 commit c727373
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
30 changes: 27 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,48 @@ Breaking changes

Added

- None

Changed

- None

Fixed

- None

## 4.7.0 (2018-03-14)

Breaking changes

- None

Added

- Add `inverse_of: auditable` definition to audit relation
[#413](https://github.com/collectiveidea/audited/pull/413)
- Add functionality to conditionally audit models
[#414](https://github.com/collectiveidea/audited/pull/414)
- Limit number of audits stored
- Allow limiting number of audits stored
[#405](https://github.com/collectiveidea/audited/pull/405)

Changed

- Reduced db calls in #revisions method
- Reduced db calls in `#revisions` method
[#402](https://github.com/collectiveidea/audited/pull/402)
[#403](https://github.com/collectiveidea/audited/pull/403)
- Update supported Ruby and Rails versions
[#404](https://github.com/collectiveidea/audited/pull/404)
[#409](https://github.com/collectiveidea/audited/pull/409)
[#415](https://github.com/collectiveidea/audited/pull/415)
[#416](https://github.com/collectiveidea/audited/pull/416)

Fixed

- Ensure that `on` and `except` options jive with `comment_required: true`
[#419](https://github.com/collectiveidea/audited/pull/419)

- Fix RSpec matchers
[#420](https://github.com/collectiveidea/audited/pull/420)

## 4.6.0 (2018-01-10)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Audited is currently ActiveRecord-only. In a previous life, Audited worked with
Add the gem to your Gemfile:

```ruby
gem "audited", "~> 4.6"
gem "audited", "~> 4.7"
```

Then, from your Rails app directory, create the `audits` table:
Expand Down
2 changes: 1 addition & 1 deletion lib/audited/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Audited
VERSION = "4.6.0"
VERSION = "4.7.0"
end

0 comments on commit c727373

Please sign in to comment.