diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a39400..fa38ea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ ## Unreleased +### pq-sys [0.6.2] 2024-09-09 + ### Changed * `openssl` usage can now be disabled with the `bundled_without_openssl` feature of `pq-sys`. @@ -13,6 +15,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ [dependencies] pq-sys = { version = "0.3.0", features = ["bundled_without_openssl"]} ``` + This disables the TLS support in `libpq`, so that you cannot connect to a database requiring TLS anymore. ## pq-sys [0.6.1] 2024-06-11 diff --git a/Cargo.toml b/Cargo.toml index 0c29352..5327d4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq-sys" -version = "0.6.1" +version = "0.6.2" description = "Auto-generated rust bindings for libpq" license = "MIT OR Apache-2.0" repository = "https://github.com/sgrif/pq-sys" diff --git a/pq-src/Cargo.toml b/pq-src/Cargo.toml index aa5c660..4820b23 100644 --- a/pq-src/Cargo.toml +++ b/pq-src/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pq-src" -version = "0.3.0" +version = "0.3.1" edition = "2021" include = [ "src/*",