Skip to content

Commit 4860a83

Browse files
committed
v2.3.0
1 parent 803c3ca commit 4860a83

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGELOG.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## [2.3.0] - 2021-04-13
6+
7+
- Add the `--delete` option of the CLI apps also as an option in the library.
8+
59
## [2.2.0] - 2021-04-13
610

711
- During decompression, allow filenames to end with only .zip, .gz, etc. suffixes. .rnx will be used as the new suffix
@@ -10,14 +14,14 @@ See also [CHANGES.md](rnxcmp/docs/CHANGES.md) of the original RNXCMP software pa
1014
## [2.1.0] - 2021-04-12
1115

1216
- Relax file name requirements.
13-
- Anything is allowed as long as it is converted without errors and can be renamed unambiguously.
17+
- Anything is allowed as long as it is converted without errors and can be renamed unambiguously.
1418

1519
## [2.0.0] - 2021-04-12
1620

1721
- Extend decompression / compression support to all compression formats allowed by the RINEX standard:
18-
- Add `decompress` and `compress` functions in Python.
19-
- Replace the `crx2rnx` and `rnx2crx` executables with more general `rinex-decompress` and `rinex-compress` on the
20-
command line.
22+
- Add `decompress` and `compress` functions in Python.
23+
- Replace the `crx2rnx` and `rnx2crx` executables with more general `rinex-decompress` and `rinex-compress` on the
24+
command line.
2125

2226
## [1.0.0] - 2021-04-10
2327

@@ -28,10 +32,9 @@ First release.
2832
- Provide Hatanaka decompression / compression support via `crx2rnx` and `rnx2crx` functions.
2933
- Install `crx2rnx` and `rnx2crx` as command line executables.
3034

31-
[2.2.0]: https://github.com/valgur/hatanaka/compare/v2.1.0...v2.2.0
3235

36+
[2.3.0]: https://github.com/valgur/hatanaka/compare/v2.2.0...v2.3.0
37+
[2.2.0]: https://github.com/valgur/hatanaka/compare/v2.1.0...v2.2.0
3338
[2.1.0]: https://github.com/valgur/hatanaka/compare/v2.0.0...v2.1.0
34-
3539
[2.0.0]: https://github.com/valgur/hatanaka/compare/v1.0.0...v2.0.0
36-
3740
[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.2.0'
4+
__version__ = '2.3.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.2.0
3+
version = 2.3.0
44
author = Martin Valgur
55
author_email = [email protected]
66
url = https://github.com/valgur/hatanaka

0 commit comments

Comments
 (0)