OSDN Git Service

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