OSDN Git Service

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