Skip to content

Commit 9f3737c

Browse files
committed
v2.2.0
1 parent 79ac0dc commit 9f3737c

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
## [2.2.0] - 2021-04-13
6+
7+
- During decompression, allow filenames to end with only .zip, .gz, etc. suffixes. .rnx will be used as the new suffix
8+
after decompression.
9+
510
## [2.1.0] - 2021-04-12
611

712
- Relax file name requirements.
@@ -17,11 +22,16 @@ See also [CHANGES.md](rnxcmp/docs/CHANGES.md) of the original RNXCMP software pa
1722
## [1.0.0] - 2021-04-10
1823

1924
First release.
20-
- Package and wrap [RNXCMP](https://terras.gsi.go.jp/ja/crx2rnx.html) 4.0.8 as PyPI wheels for all major operating systems.
25+
26+
- Package and wrap [RNXCMP](https://terras.gsi.go.jp/ja/crx2rnx.html) 4.0.8 as PyPI wheels for all major operating
27+
systems.
2128
- Provide Hatanaka decompression / compression support via `crx2rnx` and `rnx2crx` functions.
2229
- Install `crx2rnx` and `rnx2crx` as command line executables.
2330

31+
[2.2.0]: https://github.com/valgur/hatanaka/compare/v2.1.0...v2.2.0
32+
2433
[2.1.0]: https://github.com/valgur/hatanaka/compare/v2.0.0...v2.1.0
2534

2635
[2.0.0]: https://github.com/valgur/hatanaka/compare/v1.0.0...v2.0.0
36+
2737
[1.0.0]: https://github.com/valgur/hatanaka/releases/tag/v1.0.0

hatanaka/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .general_compression import *
22
from .hatanaka import *
33

4-
__version__ = '2.1.0'
4+
__version__ = '2.2.0'
55
rnxcmp_version = '4.0.8'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = hatanaka
3-
version = 2.1.0
3+
version = 2.2.0
44
author = Martin Valgur
55
author_email = [email protected]
66
url = https://github.com/valgur/hatanaka

0 commit comments

Comments
 (0)