OSDN Git Service

Update CHANGELOG
[dictzip-java/dictzip-java.git] / CHANGELOG.md
1 # Change Log
2 All notable changes to this project will be documented in this file.
3
4 ## [Unreleased]
5 ### Add
6 - More javadoc description. Complete for library APIs.
7
8 ### Changed
9 - DictZipHeader.setHeaderCRC() argument become final.
10 - DictZipFileUtils class become final.
11
12 ### Fixed
13 - Generate Maven POM with a proper groupId.
14 - DictZipInputStream: copy buffer with offset by System.copyarray().
15
16 ## [0.7.0] - 2016-4-25
17 ### Add
18 - Add test option for DictZip CLI.
19 - Add DictZipInputStream consructor that get a filename as argument.
20 - More tests.
21
22 ### Changed
23 - Default buffer size in the DictZipInputStream was changed to 8192 byte
24   from 512 byte as same as java.io.BufferedInputStream.
25 - Test static utility isFileBinaryEquals becomes an external library.
26
27 ### Fixed
28 - Check return value of InputStream.skip() method in the utility method
29   for test.
30
31 ## [0.6.1] - 2016-4-12
32 ### Fixed
33 - CLI: test compile error because DictZipFileUtils is package private,
34   but cli test depends on it. We add a utility method on test class.
35
36 ## [0.6.0] - 2016-4-10
37 ### Add
38 - gradle.properties.template
39   You need to copy to gradle.properties and edit its configuration.
40 - [#8] Support -# --fast --best option in CLI.
41 - DictZipHeader.getExtraFlag() method.
42
43 ### Changed
44 - [#3] License changed to GPL2++classpath(lib) exception and GPL3(CLI)
45 - We have now dictzip-lib and dictzip-cli subprojects.
46 - Target jars become dictzip-lib.jar and dictzip-cli.jar
47 - [#2] Now this is a Gradle project.
48 - Reorganize file structures on Maven rules.
49 - Command script by Gradle.
50 - Delete external libraries. Now gradle will download it.
51 - README: add build procedure, contribution and copyright.
52 - Coding style checks by checkstyle 6.16.1
53 - DictZip header information API through DictZipInputStream.
54
55 ### Fixed
56 - [#7] Fix DictZipInputStream.seek().Previous all releases are broken.
57 - [#5] Fix coding styles and potential problematic codes.
58
59 ## [0.5.0] - 2016-03-21
60 ### Added
61 - [#1] Command line tool subproject.
62 - CHANGELOG.md file.
63
64 ### Changed
65 - DictZipHeader interface.
66 - DictZipOutputStream constructor interface.
67
68 ### Fixed
69 - Broken output features in previous releases.
70
71 ## 0.0.2 - 2016-03-06
72 ### Added
73 - Readme document.
74
75 ## 0.0.1 - 2016-02-28
76 ### Added
77 - Start project.
78
79 [Unreleased]: https://github.com/miurahr/dictzip-java/compare/v0.7.0...HEAD
80 [0.7.0]: https://github.com/miurahr/dictzip-java/compare/v0.6.1...v0.7.0
81 [0.6.1]: https://github.com/miurahr/dictzip-java/compare/v0.6.0...v0.6.1
82 [0.6.0]: https://github.com/miurahr/dictzip-java/compare/v0.5.0...v0.6.0
83 [0.5.0]: https://github.com/miurahr/dictzip-java/compare/v0.0.2...v0.5.0