Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `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

### Fixed
- always use the build version of postgresql when the bundled feature is enabled to avoid network access

### Other
- remove devcontainer support

## `postgresql_embedded` - [0.20.0](https://github.com/theseus-rs/postgresql-embedded/compare/v0.19.0...v0.20.0) - 2025-08-31

### Fixed
- always use the build version of postgresql when the bundled feature is enabled to avoid network access
- [**breaking**] rename pg_dump compression argument to compress

### Other
- minor doc updates
- remove devcontainer support
- correct lint errors
- update to Rust 1.88.0

## `postgresql_commands` - [0.20.0](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_commands-v0.19.0...postgresql_commands-v0.20.0) - 2025-08-31

### Fixed
- [**breaking**] rename pg_dump compression argument to compress

### Other
- remove devcontainer support

## `postgresql_archive` - [0.20.0](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_archive-v0.19.0...postgresql_archive-v0.20.0) - 2025-08-31

### Other
- minor doc updates
- remove devcontainer support

## `postgresql_embedded` - [0.19.0](https://github.com/theseus-rs/postgresql-embedded/compare/v0.18.7...v0.19.0) - 2025-06-24

### Added
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ keywords = ["postgresql", "postgres", "embedded", "database", "server"]
license = "(Apache-2.0 OR MIT) AND PostgreSQL"
repository = "https://github.com/theseus-rs/postgresql-embedded"
rust-version = "1.89.0"
version = "0.19.0"
version = "0.20.0"

[workspace.dependencies]
anyhow = "1.0.99"
Expand Down
6 changes: 3 additions & 3 deletions postgresql_embedded/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ version.workspace = true

[build-dependencies]
anyhow = { workspace = true }
postgresql_archive = { path = "../postgresql_archive", version = "0.19.0", default-features = false }
postgresql_archive = { path = "../postgresql_archive", version = "0.20.0", default-features = false }
target-triple = { workspace = true }
tokio = { workspace = true, features = ["full"] }
url = { workspace = true }

[dependencies]
postgresql_archive = { path = "../postgresql_archive", version = "0.19.0", default-features = false }
postgresql_commands = { path = "../postgresql_commands", version = "0.19.0" }
postgresql_archive = { path = "../postgresql_archive", version = "0.20.0", default-features = false }
postgresql_commands = { path = "../postgresql_commands", version = "0.20.0" }
rand = { workspace = true }
semver = { workspace = true }
sqlx = { workspace = true, features = ["runtime-tokio"] }
Expand Down
6 changes: 3 additions & 3 deletions postgresql_extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ version.workspace = true

[dependencies]
async-trait = { workspace = true }
postgresql_archive = { path = "../postgresql_archive", version = "0.19.0", default-features = false }
postgresql_commands = { path = "../postgresql_commands", version = "0.19.0", default-features = false }
postgresql_archive = { path = "../postgresql_archive", version = "0.20.0", default-features = false }
postgresql_commands = { path = "../postgresql_commands", version = "0.20.0", default-features = false }
regex-lite = { workspace = true }
reqwest = { workspace = true, default-features = false, features = ["json"] }
semver = { workspace = true, features = ["serde"] }
Expand All @@ -28,7 +28,7 @@ url = { workspace = true }

[dev-dependencies]
anyhow = { workspace = true }
postgresql_embedded = { path = "../postgresql_embedded", version = "0.19.0" }
postgresql_embedded = { path = "../postgresql_embedded", version = "0.20.0" }
test-log = { workspace = true }
tokio = { workspace = true, features = ["full"] }

Expand Down