OSDN Git Service

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