Skip to content

Commit caea93a

Browse files
authored
Bump gel-errors v0.5.4, gel-stream v0.4.4, gel-dsn v0.2.15 (#501)
1 parent 9a4b5ee commit caea93a

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

gel-dsn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gel-dsn"
33
license = "MIT/Apache-2.0"
4-
version = "0.2.14"
4+
version = "0.2.15"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2021"
77
description = "Data-source name (DSN) parser for Gel and PostgreSQL databases."

gel-errors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gel-errors"
33
license = "MIT/Apache-2.0"
4-
version = "0.5.3"
4+
version = "0.5.4"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2018"
77
description = """

gel-frontend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2024"
99
tokio.workspace = true
1010

1111
# We should offer openssl/rustls as separate features
12-
gel-stream = { path = "../gel-stream", version = "0.4", features = ["server", "rustls", "pem", "__test_keys"] }
12+
gel-stream = { path = "../gel-stream", version = "^0.4.4", features = ["server", "rustls", "pem", "__test_keys"] }
1313
gel-auth = { path = "../gel-auth", version = "0.1", features = ["postgres", "gel"] }
1414
gel-pg-protocol = { path = "../gel-pg-protocol", version = "0.1" }
1515
gel-protocol = { path = "../gel-protocol", version = "0.8.5", features = ["__new-protocol"] }
@@ -41,7 +41,7 @@ tokio-util = "0.7"
4141
static_assertions = "1.1"
4242

4343
[dev-dependencies]
44-
gel-stream = { path = "../gel-stream", version = "0.4", features = ["client", "__test_keys"] }
44+
gel-stream = { path = "../gel-stream", version = "^0.4.4", features = ["client", "__test_keys"] }
4545
tokio = { workspace = true, features = ["full"] }
4646

4747
rstest = "0.25"

gel-pg-captive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ workspace = true
1212

1313
[dependencies]
1414
gel-auth = { path = "../gel-auth", version = "^0.1.6" }
15-
gel-stream = { path = "../gel-stream", version = "0.4.3", default-features = false, features = ["client", "tokio", "rustls", "__test_keys"] }
15+
gel-stream = { path = "../gel-stream", version = "^0.4.4", default-features = false, features = ["client", "tokio", "rustls", "__test_keys"] }
1616

1717
tempfile = "3"
1818
socket2 = { version = "0.5", features = ["all"] }

gel-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
rust-version.workspace = true
1414

1515
[dependencies]
16-
gel-errors = {path = "../gel-errors", version = "^0.5.3" }
16+
gel-errors = {path = "../gel-errors", version = "^0.5.4" }
1717
gel-db-protocol = {path = "../gel-db-protocol", version = "^0.1.2" }
1818

1919
bytes = "1.5.0"

gel-stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gel-stream"
33
license = "MIT/Apache-2.0"
4-
version = "0.4.3"
4+
version = "0.4.4"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2021"
77
description = "A library for streaming data between clients and servers."

gel-tokio/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ rust-version.workspace = true
1515
gel-protocol = { path = "../gel-protocol", version = "^0.8.5", features = [
1616
"with-serde",
1717
] }
18-
gel-errors = { path = "../gel-errors", version = "^0.5.3" }
18+
gel-errors = { path = "../gel-errors", version = "^0.5.4" }
1919
gel-derive = { path = "../gel-derive", version = "^0.7.3", optional = true }
20-
gel-stream = { path = "../gel-stream", version = "^0.4.3", features = ["client", "tokio", "rustls", "hickory", "keepalive"] }
21-
gel-dsn = { path = "../gel-dsn", version = "^0.2.14", features = ["gel", "log", "auto-log-trace", "auto-log-warning"] }
20+
gel-stream = { path = "../gel-stream", version = "^0.4.4", features = ["client", "tokio", "rustls", "hickory", "keepalive"] }
21+
gel-dsn = { path = "../gel-dsn", version = "^0.2.15", features = ["gel", "log", "auto-log-trace", "auto-log-warning"] }
2222
gel-auth = { path = "../gel-auth", version = "^0.1.6" }
2323
tokio = { workspace = true, features = ["net", "time", "sync", "macros"] }
2424
bytes = "1.5.0"

0 commit comments

Comments
 (0)