Skip to content

Commit

Permalink
Prepare the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Jun 10, 2024
1 parent df3149d commit 54b2108
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "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"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion pq-src/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pq-src"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
include = [
"src/*",
Expand Down

0 comments on commit 54b2108

Please sign in to comment.