Skip to content

Commit

Permalink
chore: release version 0.24.0 (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 authored Feb 5, 2024
1 parent c8ce773 commit 3221ffe
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.24.0] - 2023-02-05

### Added

* #753 select: add `--limit` (`-l`) option
* #750 frequency: add filter options

### Fixed

* #755 Fix processing of tsv/csv filter-lists

### Changed

* #756 msrv: bump to Rust 1.74.1


## [0.23.0] - 2023-01-19

* #736 Add existential and universal quantifier
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ authors:
- family-names: Voß
given-names: Jakob
orcid: https://orcid.org/0000-0002-7613-4123
version: 0.23.0
date-released: 2023-01-19
version: 0.24.0
date-released: 2024-02-05
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
]

[workspace.package]
version = "0.23.0"
version = "0.24.0"
authors = ["Nico Wagner <n.wagner@dnb.de>"]
license = "MIT OR Unlicense"
readme = "./README.md"
Expand All @@ -22,11 +22,11 @@ edition = "2021"
rust-version = "1.74.1"

[workspace.dependencies]
pica-matcher = { version = "0.23", path = "./crates/pica-matcher" }
pica-path = { version = "0.23", path = "./crates/pica-path" }
pica-record = { version = "0.23", path = "./crates/pica-record" }
pica-select = { version = "0.23", path = "./crates/pica-select" }
pica-utils = { version = "0.23", path = "./crates/pica-utils" }
pica-matcher = { version = "0.24", path = "./crates/pica-matcher" }
pica-path = { version = "0.24", path = "./crates/pica-path" }
pica-record = { version = "0.24", path = "./crates/pica-record" }
pica-select = { version = "0.24", path = "./crates/pica-select" }
pica-utils = { version = "0.24", path = "./crates/pica-utils" }

anyhow = "1.0"
bstr = "1.9"
Expand Down
10 changes: 5 additions & 5 deletions docs/book/src/anleitungen/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bereit. Diese können mit folgendem Kommando heruntergeladen und
installiert werden:

```bash
$ dpkg -i pica_0.23.0-glibc2.35-1_amd64.deb
$ dpkg -i pica_0.24.0-glibc2.35-1_amd64.deb
```

## RedHat & SUSE & CentOS
Expand All @@ -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.23.0-glibc2.35-1.x86_64.rpm
$ rpm -i pica-0.24.0-glibc2.35-1.x86_64.rpm
```

## Binary-Releases
Expand All @@ -45,7 +45,7 @@ Folgende Architekturen werden unterstützt:

Das Projekt lässt sich auch direkt aus den Quellen kompilieren. Hierfür
wird eine aktuelle [Rust](https://www.rust-lang.org/)-Version (`>=
1.70.0`) mit dem Paketmanager `cargo` benötigt.
1.74.1`) mit dem Paketmanager `cargo` benötigt.

Der aktuelle Entwicklungsstand lässt sich wie folgt installieren:

Expand All @@ -63,9 +63,9 @@ den Paketmanager `cargo` installiert werden:
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--branch main pica-toolkit

# Installation der Version 0.23.0
# Installation der Version 0.24.0
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--tag v0.23.0 pica-toolkit
--tag v0.24.0 pica-toolkit

# Installation des Entwicklungszweigs "feat1"
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
Expand Down

0 comments on commit 3221ffe

Please sign in to comment.