Skip to content

Commit

Permalink
Release version 0.19.0 (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 authored Aug 23, 2023
1 parent 0c21158 commit ab80649
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.19.0] - 2023-08-23

### Added

* #687 Allow multi-field queries in `frequency` command
* #684 Allow code ranges in path expressions

### Changed

* #686 Adapt select/frequency to new path struct
* #685 Deprecate outdated path syntax

### Fixed

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.18.0
date-released: 2023-07-27
version: 0.19.0
date-released: 2023-08-23
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ members = [
]

[workspace.package]
version = "0.18.0"
version = "0.19.0"
authors = ["Nico Wagner <n.wagner@dnb.de>"]
license = "MIT OR Unlicense"
readme = "./README.md"
keywords = ["PICA+", "code4lib"]
edition = "2021"

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

anyhow = "1.0"
arrow2 = "0.17"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To install the latest stable release:

```bash
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--tag v0.18.0 pica
--tag v0.19.0 pica
```

## Commands
Expand Down
8 changes: 4 additions & 4 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.18.0-glibc2.35-1_amd64.deb
$ dpkg -i pica_0.19.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.18.0-glibc2.35-1.x86_64.rpm
$ rpm -i pica-0.19.0-glibc2.35-1.x86_64.rpm
```

Für altere Distributionen (bspw. CentOS 7) stehen spezielle `RPM`-Pakete
Expand Down Expand Up @@ -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.18.0
# Installation der Version 0.19.0
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--tag v0.18.0 pica-toolkit
--tag v0.19.0 pica-toolkit

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

0 comments on commit ab80649

Please sign in to comment.