OSDN Git Service

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