Skip to content

Commit 5423e5c

Browse files
Merge pull request #193 from theseus-rs/release-plz-2025-06-17T06-04-15Z
postgresql-embedded-v0.18.6
2 parents 4d977d4 + bd40943 commit 5423e5c

File tree

5 files changed

+56
-23
lines changed

5 files changed

+56
-23
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## `postgresql_extensions` - [0.18.6](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_extensions-v0.18.5...postgresql_extensions-v0.18.6) - 2025-06-17
11+
12+
### Added
13+
14+
- add extractor feature flags
15+
16+
### Other
17+
18+
- correct lint errors
19+
20+
## `postgresql_embedded` - [0.18.6](https://github.com/theseus-rs/postgresql-embedded/compare/v0.18.5...v0.18.6) - 2025-06-17
21+
22+
### Added
23+
24+
- add extractor feature flags
25+
26+
### Other
27+
28+
- make liblzma an optional dependency
29+
- add documentation for bundled feature flag
30+
- correct lint errors
31+
32+
## `postgresql_archive` - [0.18.6](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_archive-v0.18.5...postgresql_archive-v0.18.6) - 2025-06-17
33+
34+
### Added
35+
36+
- add extractor feature flags
37+
38+
### Other
39+
40+
- make liblzma an optional dependency
41+
- correct lint errors
42+
1043
## `postgresql_extensions` - [0.18.5](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_extensions-v0.18.4...postgresql_extensions-v0.18.5) - 2025-05-28
1144

1245
### Other

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.87.0"
25-
version = "0.18.5"
25+
version = "0.18.6"
2626

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

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.18.5", default-features = false }
16+
postgresql_archive = { path = "../postgresql_archive", version = "0.18.6", 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.18.5", default-features = false }
23-
postgresql_commands = { path = "../postgresql_commands", version = "0.18.5" }
22+
postgresql_archive = { path = "../postgresql_archive", version = "0.18.6", default-features = false }
23+
postgresql_commands = { path = "../postgresql_commands", version = "0.18.6" }
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.18.5", default-features = false }
16-
postgresql_commands = { path = "../postgresql_commands", version = "0.18.5", default-features = false }
15+
postgresql_archive = { path = "../postgresql_archive", version = "0.18.6", default-features = false }
16+
postgresql_commands = { path = "../postgresql_commands", version = "0.18.6", 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.18.5" }
31+
postgresql_embedded = { path = "../postgresql_embedded", version = "0.18.6" }
3232
test-log = { workspace = true }
3333
tokio = { workspace = true, features = ["full"] }
3434

0 commit comments

Comments
 (0)