Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fa9a7e6

Browse filesBrowse files
postgresql-embedded-v0.17.5
1 parent 47c10f1 commit fa9a7e6
Copy full SHA for fa9a7e6

File tree

Expand file treeCollapse file tree

5 files changed

+51
-23
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+51
-23
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+28Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## `postgresql_extensions` - [0.17.5](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_extensions-v0.17.4...postgresql_extensions-v0.17.5) - 2025-01-25
11+
12+
### Other
13+
- replace regex with regex-lite to reduce dependencies
14+
- update ci configuration
15+
16+
## `postgresql_commands` - [0.17.5](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_commands-v0.17.4...postgresql_commands-v0.17.5) - 2025-01-25
17+
18+
### Other
19+
- remove anyhow and human_bytes dependencies
20+
21+
## `postgresql_embedded` - [0.17.5](https://github.com/theseus-rs/postgresql-embedded/compare/v0.17.4...v0.17.5) - 2025-01-25
22+
23+
### Other
24+
- make tracing-indicatif optional
25+
- remove anyhow and human_bytes dependencies
26+
- replace regex with regex-lite to reduce dependencies
27+
- remove http dependency
28+
- update ci configuration
29+
30+
## `postgresql_archive` - [0.17.5](https://github.com/theseus-rs/postgresql-embedded/compare/postgresql_archive-v0.17.4...postgresql_archive-v0.17.5) - 2025-01-25
31+
32+
### Other
33+
- replace regex with regex-lite to reduce dependencies
34+
- remove http dependency
35+
- make tracing-indicatif optional
36+
- remove anyhow and human_bytes dependencies
37+
1038
## `postgresql_embedded` - [v0.17.4](https://github.com/theseus-rs/postgresql-embedded/compare/v0.17.3...v0.17.4) - 2025-01-17
1139

1240
### Chore

‎Cargo.lock

Copy file name to clipboardExpand all lines: Cargo.lock
+16-16Lines 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

Copy file name to clipboardExpand all lines: Cargo.toml
+1-1Lines 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.84.0"
25-
version = "0.17.4"
25+
version = "0.17.5"
2626

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

‎postgresql_embedded/Cargo.toml

Copy file name to clipboardExpand all lines: postgresql_embedded/Cargo.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ version.workspace = true
1313

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

2121
[dependencies]
2222
home = { workspace = true }
23-
postgresql_archive = { path = "../postgresql_archive", version = "0.17.4", default-features = false }
24-
postgresql_commands = { path = "../postgresql_commands", version = "0.17.4" }
23+
postgresql_archive = { path = "../postgresql_archive", version = "0.17.5", default-features = false }
24+
postgresql_commands = { path = "../postgresql_commands", version = "0.17.5" }
2525
rand = { workspace = true }
2626
semver = { workspace = true }
2727
sqlx = { workspace = true, features = ["runtime-tokio"] }

‎postgresql_extensions/Cargo.toml

Copy file name to clipboardExpand all lines: postgresql_extensions/Cargo.toml
+3-3Lines 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.17.4", default-features = false }
16-
postgresql_commands = { path = "../postgresql_commands", version = "0.17.4", default-features = false }
15+
postgresql_archive = { path = "../postgresql_archive", version = "0.17.5", default-features = false }
16+
postgresql_commands = { path = "../postgresql_commands", version = "0.17.5", 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.17.4" }
31+
postgresql_embedded = { path = "../postgresql_embedded", version = "0.17.5" }
3232
test-log = { workspace = true }
3333
tokio = { workspace = true, features = ["full"] }
3434

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.