OSDN Git Service

Release v0.11.0 v0.11.0
authorHiroshi Miura <miurahr@linux.com>
Sat, 29 Jan 2022 03:45:03 +0000 (12:45 +0900)
committerHiroshi Miura <miurahr@linux.com>
Sat, 29 Jan 2022 03:45:03 +0000 (12:45 +0900)
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
CHANGELOG.md
README.md

index a10ba73..3d7c839 100644 (file)
@@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file.
 
 ## [Unreleased]
 
+## [0.11.0] - 2022-01-30
+### Fixed
+- Fix EOFException on some archive when read
+
+### Changed
+- Introduce length and position method that return size and content position as long  
+  - DictZipInputStream#length
+  - DictZipInputStream#position
+  - RandomAccessInputStream#position
+  - RandomAccessOutputStream#position
+
+### Deprecated
+- RandomAccessInputStream#getPos method that return int.
+
 ## [0.10.3] - 2022-01-18
 ### Fixed
 - Release actions script
index eca2253..3fa4ec2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ just add a dependency.
 
 ```
 dependencies {
-    implementation 'io.github.dictzip:dictzip:0.10.3'
+    implementation 'io.github.dictzip:dictzip:0.11.0'
 }
 ```