OSDN Git Service

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