From 16ab14cb022971d3e8e6a4b6bf27d6cffc67ab41 Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Mon, 12 Apr 2021 23:50:38 +0300 Subject: [PATCH] v2.1.0 --- CHANGELOG.md | 12 ++++++++++-- hatanaka/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 837e163..1e17ded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,17 @@ See also [CHANGES.md](rnxcmp/docs/CHANGES.md) of the original RNXCMP software package. +## [2.1.0] - 2021-04-12 + +- Relax file name requirements. + - Anything is allowed as long as it is converted without errors and can be renamed unambiguously. + ## [2.0.0] - 2021-04-12 - Extend decompression / compression support to all compression formats allowed by the RINEX standard: - - Add `decompress` and `compress` functions in Python. - - Replace the `crx2rnx` and `rnx2crx` executables with more general `rinex-decompress` and `rinex-compress` on the command line. + - Add `decompress` and `compress` functions in Python. + - Replace the `crx2rnx` and `rnx2crx` executables with more general `rinex-decompress` and `rinex-compress` on the + command line. ## [1.0.0] - 2021-04-10 @@ -15,5 +21,7 @@ First release. - Provide Hatanaka decompression / compression support via `crx2rnx` and `rnx2crx` functions. - Install `crx2rnx` and `rnx2crx` as command line executables. +[2.1.0]: https://github.com/valgur/hatanaka/compare/v2.0.0...v2.1.0 + [2.0.0]: https://github.com/valgur/hatanaka/compare/v1.0.0...v2.0.0 [1.0.0]: https://github.com/valgur/hatanaka/releases/tag/v1.0.0 diff --git a/hatanaka/__init__.py b/hatanaka/__init__.py index da0fbbe..57e5c92 100644 --- a/hatanaka/__init__.py +++ b/hatanaka/__init__.py @@ -1,5 +1,5 @@ from .general_compression import * from .hatanaka import * -__version__ = '2.0.0' +__version__ = '2.1.0' rnxcmp_version = '4.0.8' diff --git a/setup.cfg b/setup.cfg index 7f3367c..cac50be 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = hatanaka -version = 2.0.0 +version = 2.1.0 author = Martin Valgur author_email = martin.valgur@gmail.com url = https://github.com/valgur/hatanaka