Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Dec 19, 2021
1 parent 2e87f67 commit be8e7dd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

See also [CHANGES.md](rnxcmp/docs/CHANGES.md) of the original RNXCMP software package.

## [2.4.0] - 2021-12-19

- Added support for LZW (.Z) compression output. This is provided by the
new [`ncompress`](https://github.com/valgur/ncompress) library.

As a result, LZW decompression is now also 40x faster than with `unlzw3` and as fast as with the optional `unlzw`
dependency
(which currently has a [memory leak issue](https://github.com/ionelmc/python-unlzw/pull/3)).

- Fixed a deprecation warning from `importlib_resources`.

## [2.3.0] - 2021-04-13

- Add the `--delete` option of the CLI apps also as an option in the library.
Expand Down Expand Up @@ -32,6 +43,7 @@ First release.
- Provide Hatanaka decompression / compression support via `crx2rnx` and `rnx2crx` functions.
- Install `crx2rnx` and `rnx2crx` as command line executables.

[2.4.0]: https://github.com/valgur/hatanaka/compare/v2.3.0...v2.4.0

[2.3.0]: https://github.com/valgur/hatanaka/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/valgur/hatanaka/compare/v2.1.0...v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion hatanaka/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .general_compression import *
from .hatanaka import *

__version__ = '2.3.0'
__version__ = '2.4.0'
rnxcmp_version = '4.0.8'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = hatanaka
version = 2.3.0
version = 2.4.0
author = Martin Valgur
author_email = martin.valgur@gmail.com
url = https://github.com/valgur/hatanaka
Expand Down

0 comments on commit be8e7dd

Please sign in to comment.