OSDN Git Service

Release v0.11.1 v0.11.1
authorHiroshi Miura <miurahr@linux.com>
Sat, 29 Jan 2022 05:23:01 +0000 (14:23 +0900)
committerHiroshi Miura <miurahr@linux.com>
Sat, 29 Jan 2022 05:23:01 +0000 (14:23 +0900)
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
CHANGELOG.md
README.md

index 3d7c839..728b8fc 100644 (file)
@@ -2,10 +2,13 @@
 All notable changes to this project will be documented in this file.
 
 ## [Unreleased]
+## [0.11.1] - 2022-01-30
+### Added
+- Support mark/reset method in DictZipInputStream(#43)
 
 ## [0.11.0] - 2022-01-30
 ### Fixed
-- Fix EOFException on some archive when read
+- Fix EOFException on some archive when read(#42)
 
 ### Changed
 - Introduce length and position method that return size and content position as long  
@@ -25,7 +28,7 @@ All notable changes to this project will be documented in this file.
 ## [0.10.0] - 2022-01-18
 
 ### Fixed
-- DictZipOutputStream to produce good archive.
+- DictZipOutputStream to produce good archive.(#38)
   all old versions of dictzip-java produce broken archive.
 
 ## Changed
@@ -180,7 +183,9 @@ All notable changes to this project will be documented in this file.
 ### Added
 - Start project.
 
-[Unreleased]: https://github.com/dictzip/dictzip-java/compare/v0.10.3...HEAD
+[Unreleased]: https://github.com/dictzip/dictzip-java/compare/v0.11.1...HEAD
+[0.11.1]: https://github.com/dictzip/dictzip-java/compare/v0.11.0...v0.11.1
+[0.11.0]: https://github.com/dictzip/dictzip-java/compare/v0.10.3...v0.11.0
 [0.10.3]: https://github.com/dictzip/dictzip-java/compare/v0.10.0...v0.10.3
 [0.10.0]: https://github.com/dictzip/dictzip-java/compare/v0.9.5...v0.10.0
 [0.9.5]: https://github.com/dictzip/dictzip-java/compare/v0.9.2...v0.9.5
index 3fa4ec2..a1c4940 100644 (file)
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ just add a dependency.
 
 ```
 dependencies {
-    implementation 'io.github.dictzip:dictzip:0.11.0'
+    implementation 'io.github.dictzip:dictzip:0.11.1'
 }
 ```