OSDN Git Service

Release v0.13.0
[dictzip-java/dictzip-java.git] / CHANGELOG.md
index a10ba73..0f074ca 100644 (file)
@@ -3,7 +3,69 @@ All notable changes to this project will be documented in this file.
 
 ## [Unreleased]
 
+## [0.13.0] - 2022-04-16
+
+### Added
+* RandomAcessInputStream: Support java.nio.channels.FileChannel (#49)
+  * add `RandomAccessInputStream#getFileChannel`
+
+### Fixed
+* RandomAccessInputStream: fix return value of `RandomAccessInputStream#skip`
+  * return actual skip bytes
+
+## [0.12.2] - 2022-03-01
+
+### Fixed
+* Fix Out of bound error, because of readFully wrongly increment position.(#53)
+
+## [0.12.1] - 2022-02-28
+
+### Fixed
+* RrandomAccessInputStream return wrong postion() value after
+  call read() at end of file.(#51)
+
+## [0.12.0] - 2022-02-27
+
+### Changed
+* RandomAccessInputStream now buffering input from RandomAccessFile class(#48)
+
+## [0.11.2] - 2022-02-05
+
+### Added
+- NIO aware methods to create objects
+  - DictZipFiles.newDictZipInputStream
+  - DictZipFiles.newDictZipOutputStream
+  - DictZipFiles.newRandomAccessInputStream
+  - DictZipFiles.newRandonAccessOutputStream
+- Move check methods to DictZipFiles class
+  - DictZipFiles.checkDictZipInputStream
+  - DictZipFiles.checkDictZipFile
+
+### Deprecated
+- Deprecate check methods in DictZipUtils class
+
+## [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(#42)
+
+### 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
 - Fix test case to pass when external dictzip does not exist
@@ -11,7 +73,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
@@ -166,7 +228,14 @@ 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.13.0...HEAD
+[0.13.0]: https://github.com/dictzip/dictzip-java/compare/v0.12.2...v0.13.0
+[0.12.2]: https://github.com/dictzip/dictzip-java/compare/v0.12.1...v0.12.2
+[0.12.1]: https://github.com/dictzip/dictzip-java/compare/v0.12.0...v0.12.1
+[0.12.0]: https://github.com/dictzip/dictzip-java/compare/v0.11.2...v0.12.0
+[0.11.2]: https://github.com/dictzip/dictzip-java/compare/v0.11.1...v0.11.2
+[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