diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f982b557f500126774cb706a1767932bcebc337..050cdbd180e8d7ad78c8f5175d4054e3c8c2c0a7 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 e4d48879bfca88ad5bf17165259a7d8e4e240c6a..413b717531291ea167ad0f874821619bb5a52866 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 802be0c38ce06f0524a9eebf0fd4503e186f5c25..9563b5f253db73c6ad488c82d0458af700a0c358 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']