From 963023b18257b6098c27c266d587978c8e942aa8 Mon Sep 17 00:00:00 2001 From: Adam Kewley Date: Thu, 22 Feb 2024 15:40:19 +0100 Subject: [PATCH] Bump to 0.19.1 for pkgconfig support --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- README.md | 2 +- libdeflate-sys/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44a932a..4629362 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index 33378a0..1f7463f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdeflater" -version = "1.19.0" +version = "1.19.1" authors = ["Adam Kewley "] edition = "2018" license = "Apache-2.0" @@ -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" diff --git a/README.md b/README.md index 4ed1e47..57c4715 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/libdeflate-sys/Cargo.toml b/libdeflate-sys/Cargo.toml index 140c733..8cebe23 100644 --- a/libdeflate-sys/Cargo.toml +++ b/libdeflate-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdeflate-sys" -version = "1.19.0" +version = "1.19.1" authors = ["Adam Kewley "] links = "libdeflate" edition = "2018"