diff --git a/CHANGELOG.md b/CHANGELOG.md index 292e373..c9c5a5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ ## Unreleased -## Changed +## pq-sys [0.6.0] 2024-05-17 + +### Changed * The `bundled` feature of `pq-sys` no longer build a bundled version of `openssl`. To bundle `openssl` when compiling `libpq` from source, add `openssl-sys` with the `vendored` feature to your crate dependencies: @@ -16,19 +18,19 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ ## pq-src [0.1.6] 2024-04-12 -## Changed +### Changed * Fixed a potential compilation error on MacOS ## pq-src [0.1.5] 2024-04-10 -## Changed +### Changed * Include a vendored copy of `explicit_bzero` to the linux build as well as that function only exists on newer glibc versions ## pq-src [0.1.4] 2024-04-05 -## Changed +### Changed * Readded `strlcat` on linux as well diff --git a/Cargo.toml b/Cargo.toml index d403948..819e4b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq-sys" -version = "0.5.0" +version = "0.6.0" description = "Auto-generated rust bindings for libpq" license = "MIT OR Apache-2.0" repository = "https://github.com/sgrif/pq-sys" @@ -14,7 +14,7 @@ members = ["pq-src"] name = "pq_sys" [dependencies] -pq-src = { path = "pq-src", version = "0.1", optional = true } +pq-src = { path = "pq-src", version = "0.2", optional = true } [build-dependencies] pkg-config = { version = "0.3.0", optional = true } diff --git a/pq-src/Cargo.toml b/pq-src/Cargo.toml index e52b7e5..7a6d18d 100644 --- a/pq-src/Cargo.toml +++ b/pq-src/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq-src" -version = "0.1.6" +version = "0.2.0" edition = "2021" include = [ "src/*",