OSDN Git Service

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