Skip to content

Commit

Permalink
Merge pull request #62 from sgrif/prepare/release
Browse files Browse the repository at this point in the history
Prepare a 0.6.0 release
  • Loading branch information
weiznich authored May 17, 2024
2 parents 76cba8f + fd3c387 commit 4fcb2c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

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.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"
Expand All @@ -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 }
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.1.6"
version = "0.2.0"
edition = "2021"
include = [
"src/*",
Expand Down

0 comments on commit 4fcb2c6

Please sign in to comment.