Skip to content

Commit 16ab14c

Browse files
committed
v2.1.0
1 parent 69a59a1 commit 16ab14c

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22

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

5+
## [2.1.0] - 2021-04-12
6+
7+
- Relax file name requirements.
8+
- Anything is allowed as long as it is converted without errors and can be renamed unambiguously.
9+
510
## [2.0.0] - 2021-04-12
611

712
- Extend decompression / compression support to all compression formats allowed by the RINEX standard:
8-
- Add `decompress` and `compress` functions in Python.
9-
- Replace the `crx2rnx` and `rnx2crx` executables with more general `rinex-decompress` and `rinex-compress` on the command line.
13+
- Add `decompress` and `compress` functions in Python.
14+
- Replace the `crx2rnx` and `rnx2crx` executables with more general `rinex-decompress` and `rinex-compress` on the
15+
command line.
1016

1117
## [1.0.0] - 2021-04-10
1218

@@ -15,5 +21,7 @@ First release.
1521
- Provide Hatanaka decompression / compression support via `crx2rnx` and `rnx2crx` functions.
1622
- Install `crx2rnx` and `rnx2crx` as command line executables.
1723

24+
[2.1.0]: https://github.com/valgur/hatanaka/compare/v2.0.0...v2.1.0
25+
1826
[2.0.0]: https://github.com/valgur/hatanaka/compare/v1.0.0...v2.0.0
1927
[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.0.0'
4+
__version__ = '2.1.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.0.0
3+
version = 2.1.0
44
author = Martin Valgur
55
author_email = [email protected]
66
url = https://github.com/valgur/hatanaka

0 commit comments

Comments
 (0)