Docs: List bug fixes separately from new features

[ci skip]
This commit is contained in:
Jared Beck 2015-07-12 22:40:52 -04:00
parent 36d5b44712
commit 234d00381d
1 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
## 4.0.0 (Unreleased)
### Changes
### Changed
- Using a Rails initializer to reopen PaperTrail::Version or otherwise extend
PaperTrail is no longer recommended. An alternative is described in the
@ -9,11 +9,8 @@
- If you depend on the `RSpec` or `Cucumber` helpers, you must
[require them in your test helper](https://github.com/airblade/paper_trail#testing).
### Enhancements
### Added
- [#563](https://github.com/airblade/paper_trail/pull/563) - Fixed a bug in
`PaperTrail::Model::InstanceMethods#touch_with_version` so that it will trigger a version when the `on` option
was set to `[:create]`
- [#541](https://github.com/airblade/paper_trail/pull/541) - `PaperTrail.config.enabled` should be Thread Safe
- [#525](https://github.com/airblade/paper_trail/issues/525) / [#512](https://github.com/airblade/paper_trail/pull/512) -
Support for virtual accessors and redefined setter and getter methods.
@ -73,6 +70,12 @@
- [#248](https://github.com/airblade/paper_trail/issues/248) - The migrations
created by the generator now use `longtext` instead of `text` in MySQL.
### Fixed
- [#563](https://github.com/airblade/paper_trail/pull/563) - Fixed a bug in
`touch_with_version` so that it will still create a version even when the
`on` option is, e.g. `[:create]`.
## 3.0.8
- [#525](https://github.com/airblade/paper_trail/issues/525) / [#512](https://github.com/airblade/paper_trail/pull/512) -