Skip to content

Commit ab80649

Browse files
authored
Release version 0.19.0 (#690)
1 parent 0c21158 commit ab80649

5 files changed

Lines changed: 20 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
11+
## [0.19.0] - 2023-08-23
12+
1013
### Added
1114

1215
* #687 Allow multi-field queries in `frequency` command
16+
* #684 Allow code ranges in path expressions
17+
18+
### Changed
1319

20+
* #686 Adapt select/frequency to new path struct
21+
* #685 Deprecate outdated path syntax
1422

1523
### Fixed
1624

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ authors:
88
- family-names: Voß
99
given-names: Jakob
1010
orcid: https://orcid.org/0000-0002-7613-4123
11-
version: 0.18.0
12-
date-released: 2023-07-27
11+
version: 0.19.0
12+
date-released: 2023-08-23

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "0.18.0"
15+
version = "0.19.0"
1616
authors = ["Nico Wagner <n.wagner@dnb.de>"]
1717
license = "MIT OR Unlicense"
1818
readme = "./README.md"
1919
keywords = ["PICA+", "code4lib"]
2020
edition = "2021"
2121

2222
[workspace.dependencies]
23-
pica-matcher = { version = "0.18", path = "./pica-matcher" }
24-
pica-path = { version = "0.18", path = "./pica-path" }
25-
pica-record = { version = "0.18", path = "./pica-record" }
26-
pica-select = { version = "0.18", path = "./pica-select" }
23+
pica-matcher = { version = "0.19", path = "./pica-matcher" }
24+
pica-path = { version = "0.19", path = "./pica-path" }
25+
pica-record = { version = "0.19", path = "./pica-record" }
26+
pica-select = { version = "0.19", path = "./pica-select" }
2727

2828
anyhow = "1.0"
2929
arrow2 = "0.17"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To install the latest stable release:
3535

3636
```bash
3737
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
38-
--tag v0.18.0 pica
38+
--tag v0.19.0 pica
3939
```
4040

4141
## Commands

docs/book/src/anleitungen/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bereit. Diese können mit folgendem Kommando heruntergeladen und
1212
installiert werden:
1313

1414
```bash
15-
$ dpkg -i pica_0.18.0-glibc2.35-1_amd64.deb
15+
$ dpkg -i pica_0.19.0-glibc2.35-1_amd64.deb
1616
```
1717

1818
## RedHat & SUSE & CentOS
@@ -22,7 +22,7 @@ Für [RedHat](https://www.redhat.com/), [SUSE](https://www.suse.com/) und
2222
Download bereit. Diese können mit folgendem Kommando installiert werden:
2323

2424
```bash
25-
$ rpm -i pica-0.18.0-glibc2.35-1.x86_64.rpm
25+
$ rpm -i pica-0.19.0-glibc2.35-1.x86_64.rpm
2626
```
2727

2828
Für altere Distributionen (bspw. CentOS 7) stehen spezielle `RPM`-Pakete
@@ -68,9 +68,9 @@ den Paketmanager `cargo` installiert werden:
6868
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
6969
--branch main pica-toolkit
7070

71-
# Installation der Version 0.18.0
71+
# Installation der Version 0.19.0
7272
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
73-
--tag v0.18.0 pica-toolkit
73+
--tag v0.19.0 pica-toolkit
7474

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

0 commit comments

Comments
 (0)