OSDN Git Service

Update test to improve coverage
[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 - Add test option for DictZip CLI.
7 - Add DictZipInputStream consructor that get a filename as argument.
8 - More tests.
9
10 ### Changed
11 - README: there is no test dependency for commons-io.
12 - Default buffer size in the DictZipInputStream was changed to 4096 byte.
13
14 ### Fixed
15 - Check return value of InputStream.skip() method in the utility method
16   for test.
17
18 ## [0.6.1] - 2016-4-12
19 ### Fixed
20 - CLI: test compile error because DictZipFileUtils is package private,
21   but cli test depends on it. We add a utility method on test class.
22
23 ## [0.6.0] - 2016-4-10
24 ### Add
25 - gradle.properties.template
26   You need to copy to gradle.properties and edit its configuration.
27 - [#8] Support -# --fast --best option in CLI.
28 - DictZipHeader.getExtraFlag() method.
29
30 ### Changed
31 - We have now dictzip-lib and dictzip-cli subprojects.
32 - Target jars become dictzip-lib.jar and dictzip-cli.jar
33 - [#2] Now this is a Gradle project.
34 - Reorganize file structures on Maven rules.
35 - Command script by Gradle.
36 - Delete external libraries. Now gradle will download it.
37 - README: add build procedure, contribution and copyright.
38 - Coding style checks by checkstyle 6.16.1
39 - DictZip header information API through DictZipInputStream.
40
41 ### Fixed
42 - [#7] Fix DictZipInputStream.seek().Previous all releases are broken.
43 - [#5] Fix coding styles and potential problematic codes.
44
45 ## [0.5.0] - 2016-03-21
46 ### Added
47 - [#1] Command line tool subproject.
48 - CHANGELOG.md file.
49
50 ### Changed
51 - DictZipHeader interface.
52 - DictZipOutputStream constructor interface.
53
54 ### Fixed
55 - Broken output features in previous releases.
56
57 ## 0.0.2 - 2016-03-06
58 ### Added
59 - Readme document.
60
61 ## 0.0.1 - 2016-02-28
62 ### Added
63 - Start project.
64
65 [Unreleased]: https://github.com/miurahr/dictzip-java/compare/v0.5.0...HEAD
66 [0.6.0]: https://github.com/miurahr/dictzip-java/compare/v0.5.0...v0.6.0
67 [0.5.0]: https://github.com/miurahr/dictzip-java/compare/v0.0.2...v0.5.0