From 54b210888f41ba623df668e4bf7c2319ae62ea0b Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Mon, 10 Jun 2024 16:33:56 +0200 Subject: [PATCH] Prepare the next release --- CHANGELOG.md | 7 +++++++ Cargo.toml | 4 ++-- pq-src/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9c5a5a..9fb6970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ ## Unreleased +## pq-sys [0.6.1] 2024-06-11 + +### Changed + +* `pq-src` starting with version 0.3 now depends on openssl on windows as well add support for the scram-sha-256 authentication method +* `pq-sys` adds support for pq-src 0.3.0 + ## pq-sys [0.6.0] 2024-05-17 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 819e4b0..85412de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq-sys" -version = "0.6.0" +version = "0.6.1" 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.2", optional = true } +pq-src = { path = "pq-src", version = ">=0.2, <0.4", 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 504e4f3..b247d36 100644 --- a/pq-src/Cargo.toml +++ b/pq-src/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq-src" -version = "0.2.0" +version = "0.3.0" edition = "2021" include = [ "src/*",