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