Skip to content

Commit

Permalink
Release v0.21.1
Browse files Browse the repository at this point in the history
Fixed
-----
* Follow shutil.register_unpack_format() convention of raising a ReadError
  when the library cannot handle a file (#583)
* ensure unpack_7zarchive closes the archive (#584)
* 64bit OS detection (#580)

Added
-----
* Add recursive sub-directories and files extraction (#585)

Changed
-------
* check targets argument type for read and extract method (#577)
* Treat zero byte stream as a file (#551)
  • Loading branch information
miurahr committed Jul 1, 2024
1 parent 1fddf8c commit 60e4899
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
21 changes: 20 additions & 1 deletion docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,24 @@ All notable changes to this project will be documented in this file.
`Unreleased`_
=============

`v0.21.1`_
==========
Fixed
-----
* Follow shutil.register_unpack_format() convention of raising a ReadError
when the library cannot handle a file (#583)
* ensure unpack_7zarchive closes the archive (#584)
* 64bit OS detection (#580)

Added
-----
* Add recursive sub-directories and files extraction (#585)

Changed
-------
* check targets argument type for read and extract method (#577)
* Treat zero byte stream as a file (#551)

`v0.21.0`_
==========
Changed
Expand Down Expand Up @@ -378,7 +396,8 @@ Changed


.. History links
.. _Unreleased: https://github.com/miurahr/py7zr/compare/v0.21.0...HEAD
.. _Unreleased: https://github.com/miurahr/py7zr/compare/v0.21.1...HEAD
.. _v0.21.1: https://github.com/miurahr/py7zr/compare/v0.21.0...v0.21.1
.. _v0.21.0: https://github.com/miurahr/py7zr/compare/v0.20.8...v0.21.0
.. _v0.20.8: https://github.com/miurahr/py7zr/compare/v0.20.7...v0.20.8
.. _v0.20.7: https://github.com/miurahr/py7zr/compare/v0.20.6...v0.20.7
Expand Down
8 changes: 3 additions & 5 deletions docs/SECURITY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ Supported Versions
+---------+---------------------+
| Version | Status |
+=========+=====================+
| 0.20.x | Stable version |
| 0.21.x | Stable version |
+---------+---------------------+
| 0.19.x | Security fixes only |
| 0.20.x | Security fixes only |
+---------+---------------------+
| 0.18.x | Security fixes only |
+---------+---------------------+
| < 0.18 | not supported |
| < 0.20 | not supported |
+---------+---------------------+

Reporting a Vulnerability
Expand Down
6 changes: 4 additions & 2 deletions docs/authors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ Contributors, listed alphabetically, are:
* Alexander Kapshuna -- Fix shutil integration (#353)
* @andrebrait -- Fix exception for empty 7z file (#118)
* Antoine C -- Support Python 3.12 and later (#550)
* @amarcu5 -- fix error when large compressed headers (#281)
* @amarcu5 -- Fix error when large compressed headers (#281)
* c.foster -- Default exceptions to include the exception type
* chigusa -- Fix UTF-16 path parsing for extraction (#391)
* @DoNCK -- Fix extraction of hidden dot files(#448)
* François Freitag -- Improve shutil interface support (#583, #584)
* Jasper Lievisse Adriaanse -- Update document
* Joachim Bauch -- pylzma orginator
* Joachim Bauch -- pylzma originator
* John King -- Fix 64bit os detection (#580)
* Kazuya Fujioka -- Fix zero file problem
* Kyle Altendorf -- Fix multithreading problem (#82)
* Martin Larralde -- Fix writef method (#397)
Expand Down

0 comments on commit 60e4899

Please sign in to comment.