OSDN Git Service

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