Skip to content

Commit

Permalink
prepare release 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Dec 12, 2023
1 parent 38d759f commit 0686a37
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions doc/changelog.rst
Expand Up @@ -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)
==========================

Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hachoir/__init__.py
@@ -1,2 +1,2 @@
VERSION = (3, 2, 0)
VERSION = (3, 3, 0)
__version__ = ".".join(map(str, VERSION))

0 comments on commit 0686a37

Please sign in to comment.