Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Apr 13, 2021
1 parent 803c3ca commit 4860a83
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## [2.3.0] - 2021-04-13

- Add the `--delete` option of the CLI apps also as an option in the library.

## [2.2.0] - 2021-04-13

- During decompression, allow filenames to end with only .zip, .gz, etc. suffixes. .rnx will be used as the new suffix
Expand All @@ -10,14 +14,14 @@ See also [CHANGES.md](rnxcmp/docs/CHANGES.md) of the original RNXCMP software pa
## [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.
- 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

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

[2.2.0]: https://github.com/valgur/hatanaka/compare/v2.1.0...v2.2.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
[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
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.2.0'
__version__ = '2.3.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.2.0
version = 2.3.0
author = Martin Valgur
author_email = martin.valgur@gmail.com
url = https://github.com/valgur/hatanaka
Expand Down

0 comments on commit 4860a83

Please sign in to comment.