OSDN Git Service

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