Skip to content

Commit

Permalink
Bump to 0.19.1 for pkgconfig support
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Feb 22, 2024
1 parent e0678bd commit 963023b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.19.1]

- Libdeflate-sys now finds libdeflate via `pkgconfig` when it's available, rather than
using the in-tree version (#30, thanks @musicinmybrain)

## [1.19.0]

- Updated libdeflate to v1.19 (#28)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdeflater"
version = "1.19.0"
version = "1.19.1"
authors = ["Adam Kewley <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -15,7 +15,7 @@ operations. Contains bindings for raw deflate, zlib, and gzip data.
"""

[dependencies]
libdeflate-sys = { version = "1.19.0", path = "libdeflate-sys" }
libdeflate-sys = { version = "1.19.1", path = "libdeflate-sys" }

[dev-dependencies]
criterion = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![Documentation](https://docs.rs/libdeflater/badge.svg)](https://docs.rs/libdeflater)

```
libdeflater = "1.19.0"
libdeflater = "1.19.1"
```

`libdeflater` is a thin wrapper library around [libdeflate](https://github.com/ebiggers/libdeflate). Libdeflate
Expand Down
2 changes: 1 addition & 1 deletion libdeflate-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdeflate-sys"
version = "1.19.0"
version = "1.19.1"
authors = ["Adam Kewley <[email protected]>"]
links = "libdeflate"
edition = "2018"
Expand Down

0 comments on commit 963023b

Please sign in to comment.