OSDN Git Service

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