From e903a3f0418ea5101d05fcdfe7ac599f9c195457 Mon Sep 17 00:00:00 2001 From: Dominik Loidolt <dominik.loidolt@univie.ac.at> Date: Wed, 26 Apr 2023 15:50:36 +0200 Subject: [PATCH] Prepare version 0.11 --- CHANGELOG.md | 2 +- README.md | 5 +++-- meson.build | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f982b5..050cdbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to this project will be documented in this file. -## [Unreleased] +## [0.11] - 26-04-2023 ### Added - add -b or --binary option for read and write files in binary format - add cross compile file for sparc diff --git a/README.md b/README.md index e4d4887..413b717 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,7 @@ Compiled executables can be found [here](https://gitlab.phaidra.org/loidoltd15/c | `-o <prefix>` | Use the `<prefix>` for output files<sup>[1](#fnote1)</sup> | | `-n, --model_cfg` | Print a default model configuration and exit<sup>[2](#fnote2)</sup> | | `--diff_cfg` | Print a default 1d-differencing configuration and exit<sup>[2](#fnote2)</sup> | -| `--binary` | Read and write files in binary format | -| `--no_header` | Do not add a compression entity header in front of the compressed data | +| `-b, --binary` | Read and write files in binary format | | `-a, --rdcu_par` | Add additional RDCU control parameters | | `-V, --version` | Print program version and exit | | `-v, --verbose` | Print various debugging information | @@ -34,6 +33,7 @@ and **buffer_length** parameter is set to **0**! | `-c <file>` | File containing the compressing configuration | | `-d <file>` | File containing the data to be compressed | | `-m <file>` | File containing the model of the data to be compressed | +| `--no_header` | Do not add a compression entity header in front of the compressed data | | `--rdcu_pkt` | Generate RMAP packets for an RDCU compression<sup>[3](#fnote3)</sup> | | `--last_info <.info file>` | Generate RMAP packets for an RDCU compression with parallel read of the last results | @@ -133,3 +133,4 @@ Instructions on how to perform compression without headers can be found [here](h And also check if the updated model is the same `diff compressed/data2_upmodel.dat decompressed/test_data2_upmodel.dat` +j \ No newline at end of file diff --git a/meson.build b/meson.build index 802be0c..9563b5f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('cmp_tool', 'c', - version : '0.10-b.4', + version : '0.11', meson_version : '>= 0.56', license : 'GPL-2.0', default_options : ['warning_level=3', 'c_std=gnu99'] -- GitLab