diff --git a/CHANGELOG.md b/CHANGELOG.md index 27ba4396b..8acb99401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.20.0] - 2023-09-14 + ### Added +* #694 Add `explode` command * #693 Add progress bar diff --git a/CITATION.cff b/CITATION.cff index aff07394f..c1dbac2b4 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,5 +8,5 @@ authors: - family-names: Voß given-names: Jakob orcid: https://orcid.org/0000-0002-7613-4123 -version: 0.19.0 -date-released: 2023-08-23 +version: 0.20.0 +date-released: 2023-09-14 diff --git a/Cargo.toml b/Cargo.toml index 20a9abe5a..94f1c5b1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ ] [workspace.package] -version = "0.19.0" +version = "0.20.0" authors = ["Nico Wagner "] license = "MIT OR Unlicense" readme = "./README.md" @@ -20,17 +20,17 @@ keywords = ["PICA+", "code4lib"] edition = "2021" [workspace.dependencies] -pica-matcher = { version = "0.19", path = "./pica-matcher" } -pica-path = { version = "0.19", path = "./pica-path" } -pica-record = { version = "0.19", path = "./pica-record" } -pica-select = { version = "0.19", path = "./pica-select" } +pica-matcher = { version = "0.20", path = "./pica-matcher" } +pica-path = { version = "0.20", path = "./pica-path" } +pica-record = { version = "0.20", path = "./pica-record" } +pica-select = { version = "0.20", path = "./pica-select" } anyhow = "1.0" arrow2 = "0.17" bstr = "1.6" chrono = { version = "0.4", default-features = false } -clap = "4.3" -clap_complete = "4.3" +clap = "4.4" +clap_complete = "4.4" csv = "1.2" flate2 = "1.0" nom = "7.1" @@ -40,7 +40,7 @@ serde = "1.0" serde_json = "1.0" sha2 = "0.10" thiserror = "1.0" -toml = "0.7" +toml = "0.8" [profile.release] codegen-units = 1 diff --git a/README.md b/README.md index c6d9ed5b1..8763ca0b2 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To install the latest stable release: ```bash $ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \ - --tag v0.19.0 pica-toolkit + --tag v0.20.0 pica-toolkit ``` ## Commands diff --git a/docs/book/src/anleitungen/installation.md b/docs/book/src/anleitungen/installation.md index 15edd528e..c32cb661c 100644 --- a/docs/book/src/anleitungen/installation.md +++ b/docs/book/src/anleitungen/installation.md @@ -12,7 +12,7 @@ bereit. Diese können mit folgendem Kommando heruntergeladen und installiert werden: ```bash -$ dpkg -i pica_0.19.0-glibc2.35-1_amd64.deb +$ dpkg -i pica_0.20.0-glibc2.35-1_amd64.deb ``` ## RedHat & SUSE & CentOS @@ -22,7 +22,7 @@ Für [RedHat](https://www.redhat.com/), [SUSE](https://www.suse.com/) und Download bereit. Diese können mit folgendem Kommando installiert werden: ```bash -$ rpm -i pica-0.19.0-glibc2.35-1.x86_64.rpm +$ rpm -i pica-0.20.0-glibc2.35-1.x86_64.rpm ``` Für altere Distributionen (bspw. CentOS 7) stehen spezielle `RPM`-Pakete @@ -68,9 +68,9 @@ den Paketmanager `cargo` installiert werden: $ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \ --branch main pica-toolkit -# Installation der Version 0.19.0 +# Installation der Version 0.20.0 $ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \ - --tag v0.19.0 pica-toolkit + --tag v0.20.0 pica-toolkit # Installation des Entwicklungszweigs "feat1" $ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \