Skip to content

Commit b45de56

Browse files
postgresql-embedded-v0.20.1
1 parent e439ac6 commit b45de56

File tree

5 files changed

+44
-23
lines changed

5 files changed

+44
-23
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## `postgresql_extensions` - [0.20.1](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_extensions-v0.20.0...postgresql_extensions-v0.20.1) - 2025-09-27
11+
12+
### Other
13+
- update Cargo.toml dependencies
14+
15+
## `postgresql_embedded` - [0.20.1](https://github.com/theseus-rs/postgresql-embedded/compare/v0.20.0...v0.20.1) - 2025-09-27
16+
17+
### Added
18+
- add postgresql v18 support
19+
20+
### Fixed
21+
- target-triple should not be marked as optional
22+
23+
### Other
24+
- update Cargo.toml dependencies
25+
26+
## `postgresql_archive` - [0.20.1](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_archive-v0.20.0...postgresql_archive-v0.20.1) - 2025-09-27
27+
28+
### Fixed
29+
- target-triple should not be marked as optional
30+
1031
## `postgresql_extensions` - [0.20.0](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_extensions-v0.19.0...postgresql_extensions-v0.20.0) - 2025-08-31
1132

1233
### Fixed

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ keywords = ["postgresql", "postgres", "embedded", "database", "server"]
2222
license = "(Apache-2.0 OR MIT) AND PostgreSQL"
2323
repository = "https://github.com/theseus-rs/postgresql-embedded"
2424
rust-version = "1.90.0"
25-
version = "0.20.0"
25+
version = "0.20.1"
2626

2727
[workspace.dependencies]
2828
anyhow = "1.0.100"

postgresql_embedded/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ version.workspace = true
1313

1414
[build-dependencies]
1515
anyhow = { workspace = true }
16-
postgresql_archive = { path = "../postgresql_archive", version = "0.20.0", default-features = false }
16+
postgresql_archive = { path = "../postgresql_archive", version = "0.20.1", default-features = false }
1717
target-triple = { workspace = true }
1818
tokio = { workspace = true, features = ["full"] }
1919
url = { workspace = true }
2020

2121
[dependencies]
22-
postgresql_archive = { path = "../postgresql_archive", version = "0.20.0", default-features = false }
23-
postgresql_commands = { path = "../postgresql_commands", version = "0.20.0" }
22+
postgresql_archive = { path = "../postgresql_archive", version = "0.20.1", default-features = false }
23+
postgresql_commands = { path = "../postgresql_commands", version = "0.20.1" }
2424
rand = { workspace = true }
2525
semver = { workspace = true }
2626
sqlx = { workspace = true, features = ["runtime-tokio"] }

postgresql_extensions/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ version.workspace = true
1212

1313
[dependencies]
1414
async-trait = { workspace = true }
15-
postgresql_archive = { path = "../postgresql_archive", version = "0.20.0", default-features = false }
16-
postgresql_commands = { path = "../postgresql_commands", version = "0.20.0", default-features = false }
15+
postgresql_archive = { path = "../postgresql_archive", version = "0.20.1", default-features = false }
16+
postgresql_commands = { path = "../postgresql_commands", version = "0.20.1", default-features = false }
1717
regex-lite = { workspace = true }
1818
reqwest = { workspace = true, default-features = false, features = ["json"] }
1919
semver = { workspace = true, features = ["serde"] }
@@ -28,7 +28,7 @@ url = { workspace = true }
2828

2929
[dev-dependencies]
3030
anyhow = { workspace = true }
31-
postgresql_embedded = { path = "../postgresql_embedded", version = "0.20.0" }
31+
postgresql_embedded = { path = "../postgresql_embedded", version = "0.20.1" }
3232
test-log = { workspace = true }
3333
tokio = { workspace = true, features = ["full"] }
3434

0 commit comments

Comments
 (0)