Skip to content

Commit

Permalink
Release version 0.25.0 (#795)
Browse files Browse the repository at this point in the history
Signed-off-by: Nico Wagner <[email protected]>
  • Loading branch information
nwagner84 authored May 30, 2024
1 parent 053c5c1 commit 986d2fa
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 12 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.25.0] - 2023-05-30

### Added

* #783 Add filter options (`count`)
* #793 Add `--keep`/`--discard` option (`explode`)
* #791 Add `--limit`/`-l` option (`explode`)
* #790 Add XOR operator

### Fixed

* #776 Fix glibc error (cross builds)
* #779 Fix use of legacy numeric constants
* #781 Fix progress bar update (`frequency`)
* #784 Fix explode on copy level
* #778 Fix broken links

### Changed

* #772 Change license to EUPL-1.2
* #764 Migrate from `mdbook` to `hugo`
* #773 Refactor CI and daily workflow
* #794 Stabilize `explode` command
* #788 Bump MSRV to `1.76.0`


## [0.24.0] - 2023-02-05

### Added
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.24.0
date-released: 2024-02-05
version: 0.25.0
date-released: 2024-05-30
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.24.0"
version = "0.25.0"
authors = ["Nico Wagner <[email protected]>"]
license = "EUPL-1.2"
readme = "./README.md"
Expand All @@ -22,11 +22,11 @@ edition = "2021"
rust-version = "1.76"

[workspace.dependencies]
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" }
pica-matcher = { version = "0.25", path = "./crates/pica-matcher" }
pica-path = { version = "0.25", path = "./crates/pica-path" }
pica-record = { version = "0.25", path = "./crates/pica-record" }
pica-select = { version = "0.25", path = "./crates/pica-select" }
pica-utils = { version = "0.25", path = "./crates/pica-utils" }

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

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

## RedHat & SUSE & CentOS
Expand All @@ -23,7 +23,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.24.0-glibc2.35-1.x86_64.rpm
$ rpm -i pica-0.25.0-glibc2.35-1.x86_64.rpm
```

## Binary-Releases
Expand Down Expand Up @@ -64,9 +64,9 @@ den Paketmanager `cargo` installiert werden:
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--branch main pica-toolkit

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

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

0 comments on commit 986d2fa

Please sign in to comment.