Skip to content

Commit

Permalink
Release version 0.14.0 (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwagner84 authored Jan 16, 2023
1 parent 0de2a29 commit ddf5c2d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## 0.14.0

### Fixed

- #563 Fix false positives of `not in` operator

### Added

Expand All @@ -23,3 +27,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* #537 Stabilize `cat` command
* #538 Stabilize `completions` command
* #554 Stabilize `count` command
* #566 Cleanup release workflow
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pica"
version = "0.13.0"
version = "0.14.0"
authors = ["Nico Wagner <[email protected]>"]
edition = "2021"
license = "MIT OR Unlicense"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ this project from source Rust 1.58.1 or newer is required.
To install the latest stable release:

```bash
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs --tag v0.13.0 pica
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs --tag v0.14.0 pica
```

## Commands
Expand Down
8 changes: 4 additions & 4 deletions docs/book/src/de/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Beginnend mit der Version `0.10.0` stehen für die Linux-Distributionen
werden:

```bash
$ wget https://github.com/deutsche-nationalbibliothek/pica-rs/releases/download/v0.13./pica_0.13.0-1_amd64.deb
$ wget https://github.com/deutsche-nationalbibliothek/pica-rs/releases/download/v0.14.0/pica_0.14.0-1_amd64.deb
$ dpkg -i pica_0.13.0-1_amd64.deb
$ rm pica_0.13.0-1_amd64.deb
```
Expand All @@ -26,10 +26,10 @@ Beginnend mit der Version `0.10.0` stehen für die Linux-Distributionen
mit folgendem Kommando installiert werden:

```bash
$ rpm -i pica-0.13.0-1.x86_64.rpm
$ rpm -i pica-0.14.0-1.x86_64.rpm
```

Für CentOS 7 steht ein spezielles `RPM`-Paket bereit (`pica-0.13.0-glibc2.17-1.x86_64.rpm`),
Für CentOS 7 steht ein spezielles `RPM`-Paket bereit (`pica-0.14.0-glibc2.17-1.x86_64.rpm`),
dass die [GNU C Library (glibc)](https://www.gnu.org/software/libc) in der Version 2.17
verwendet.

Expand Down Expand Up @@ -77,7 +77,7 @@ Wenn die Quelle nicht benötigt werden, kann das Projekt auch direkt über den P
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--branch main pica

# Installation der Version 0.13.0
# Installation der Version 0.14.0
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs \
--tag v0.13.0 pica

Expand Down
2 changes: 1 addition & 1 deletion pica-matcher/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this crate will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## v0.1.0

### Added

Expand Down
2 changes: 1 addition & 1 deletion pica-path/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this crate will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## v0.1.0

### Added

Expand Down
2 changes: 1 addition & 1 deletion pica-record/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## v0.1.0

### Added

Expand Down

0 comments on commit ddf5c2d

Please sign in to comment.