From 0686a37958f244dac690b94182ef26c38578f0fb Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 12 Dec 2023 11:49:06 +0100 Subject: [PATCH] prepare release 3.2.1 --- doc/changelog.rst | 21 +++++++++++++++++++++ doc/conf.py | 2 +- hachoir/__init__.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 0773e901..1bd0ba7b 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -2,6 +2,27 @@ Changelog +++++++++ +hachoir 3.3.0 (2023-12-12) +========================== + +* Add ARJ archive parser. Patch by Oleg Gubanov. +* Support new features in JDK 9-14. Mostly, this is support for the new + ``invokedynamic`` opcode and supporting constant pool entries. +* Ext2/3/4: fix handling of symlink inodes. +* PNG: Bump up maximum chunk size heuristic. +* PDF: Fix some issues caused by code updated from Python 2 to Python 3. +* PYC: add value creation, misc fixes. +* LZX: Fix decompression of window refs to Intel jump fixups. +* core: speed up ``str2long()`` significantly by using ``int.from_bytes()``. +* wx: fix compatibility with newer wxPython. +* wx: Use system default colours for window and highlight in hex editor. +* EXE: Support PE32+ optional header. +* EXE: Increase default number of sections to handle complex programs. +* Remove Python 2 code. +* Port runtests.py to Python 3.12. +* Fix documentation build. Remove napoleon extension, it's broken on Python + 3.11. + hachoir 3.2.0 (2022-11-27) ========================== diff --git a/doc/conf.py b/doc/conf.py index 870eb0a8..43a9bad4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,7 +53,7 @@ # # The short X.Y version. # The full version, including alpha/beta/rc tags. -version = release = '3.2.0' +version = release = '3.3.0' # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/hachoir/__init__.py b/hachoir/__init__.py index 4e2da0af..180b8275 100644 --- a/hachoir/__init__.py +++ b/hachoir/__init__.py @@ -1,2 +1,2 @@ -VERSION = (3, 2, 0) +VERSION = (3, 3, 0) __version__ = ".".join(map(str, VERSION))