|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) |
| 6 | +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [2.1.1] – 2016-10-24 |
| 9 | + |
| 10 | +### Added |
| 11 | + |
| 12 | +- Added some unit tests. |
| 13 | + |
| 14 | +### Changed |
| 15 | + |
| 16 | +- Maven group is `com.github.bkromhout` |
| 17 | + |
| 18 | +### Fixed |
| 19 | + |
| 20 | +- Bugfix: Fix issue showing inline diffs. |
| 21 | + |
| 22 | +## [2.1.0] – 2016-10-24 |
| 23 | + |
| 24 | +### Changed |
| 25 | + |
| 26 | +- Removes the dependency on Guava time |
| 27 | + |
| 28 | +## [2.0.0] – 2016-02-24 |
| 29 | + |
| 30 | +### Added |
| 31 | + |
| 32 | +- Add the ability to differentiate the inserted and deleted tags and class-names in inline-diff |
| 33 | +- Add tha ability to skip data |
| 34 | +- Can now customize diff algorithm in `DiffRowGenerator.Builder` |
| 35 | + |
| 36 | +### Fixed |
| 37 | + |
| 38 | +- Fix "equal" lines when lines isn't really equals (when Equalizer return equals on different strings) |
| 39 | +- Fix imbrication tag bug in lineDiff (when inline is on a multi-line chunk) |
| 40 | + |
| 41 | +### Changed |
| 42 | + |
| 43 | +- Change groupId and artifactId to prevent conflict with origin library: now 'com.github.java-diff-utils:java-diff-utils' instead of 'jp.skypencil.java-diff-utils:diffutils' |
| 44 | +- Default class-name is now `null` for deleted and inserted data, and "`change`" for change data |
| 45 | +- Default tag for deleted data is `del` |
| 46 | +- Default tag for inserted data is `ins` |
| 47 | + |
| 48 | +## 1.5.0 – 2014-05-22 |
| 49 | + |
| 50 | +### Changed |
| 51 | + |
| 52 | +- make Equalizer configurable. ([pull #1](https://github.com/eller86/java-diff-utils/pull/1)) |
| 53 | + |
| 54 | +## 1.4.1 – 2014-01-01 |
| 55 | + |
| 56 | +### Fixed |
| 57 | + |
| 58 | +- bugfix: parse method should be public |
| 59 | + |
| 60 | +## 1.4.0 – 2014-01-01 |
| 61 | + |
| 62 | +### Added |
| 63 | + |
| 64 | +- add Guava to dependency |
| 65 | +- let user uses other string to represent line which does not exist |
| 66 | +- implement event based parser like SAX (in difflib.event package) |
| 67 | + |
| 68 | +### Changed |
| 69 | + |
| 70 | +- switch from JDK5 to JDK7 |
| 71 | + |
| 72 | +[Unreleased]: https://github.com/koppor/java-diff-utils/compare/2.1.1...HEAD |
| 73 | +[2.1.1]: https://github.com/koppor/java-diff-utils/compare/2.1.0...2.1.1 |
| 74 | +[2.1.0]: https://github.com/koppor/java-diff-utils/compare/2.0.0...2.1.0 |
| 75 | +[2.0.0]: https://github.com/koppor/java-diff-utils/compare/1.5.0...2.0.0 |
| 76 | +[1.5.0]: https://github.com/koppor/java-diff-utils/compare/1.4.1...1.5.0 |
| 77 | +[1.4.1]: https://github.com/koppor/java-diff-utils/compare/1.4.0...1.4.1 |
0 commit comments