Skip to content

Commit cb49faa

Browse files
committed
Bump versions
1 parent b0fee41 commit cb49faa

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/publish-edgedb-protocol.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: "write"
1414
contents: "read"
1515
steps:
16-
# checkout and env setup
16+
# checkout and env setup
1717
- uses: actions/checkout@v3
1818
- uses: DeterminateSystems/nix-installer-action@main
1919
- uses: DeterminateSystems/magic-nix-cache-action@main

.github/workflows/publish-edgedb-tokio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: "write"
1414
contents: "read"
1515
steps:
16-
# checkout and env setup
16+
# checkout and env setup
1717
- uses: actions/checkout@v3
1818
- uses: DeterminateSystems/nix-installer-action@main
1919
- uses: DeterminateSystems/magic-nix-cache-action@main

examples/globals/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77
[dependencies]
88
anyhow = "1.0"
9-
gel-tokio = { version = "0.5.0", path="../../gel-tokio"}
10-
gel-derive = { version = "0.5.0", path="../../gel-derive"}
9+
gel-tokio = { version = "0.6.0", path="../../gel-tokio"}
10+
gel-derive = { version = "0.6.0", path="../../gel-derive"}
1111
tokio = {version="1.20", features=["macros", "rt", "rt-multi-thread"]}
1212
env_logger = "0.11.3"

gel-derive/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-derive"
33
license = "MIT/Apache-2.0"
4-
version = "0.5.2"
4+
version = "0.6.0"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2018"
77
description = """

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.4.2"
4+
version = "0.5.0"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2018"
77
description = "Error types for Gel database client. Formerly published as gel-errors."

gel-protocol/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gel-protocol"
33
license = "MIT/Apache-2.0"
4-
version = "0.6.1"
4+
version = "0.7.0"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2018"
77
description = """
@@ -20,7 +20,7 @@ num-bigint = {version="0.4.3", optional=true}
2020
num-traits = {version="0.2.10", optional=true}
2121
bigdecimal = {version="0.4.0", optional=true}
2222
chrono = {version="0.4.23", optional=true, features=["std"], default-features=false}
23-
gel-errors = {path = "../gel-errors", version = "0.4" }
23+
gel-errors = {path = "../gel-errors", version = "0.5" }
2424
bitflags = "2.4.0"
2525
serde = {version="1.0.190", features = ["derive"], optional=true}
2626
serde_json = {version="1", optional=true}

gel-tokio/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gel-tokio"
33
license = "MIT/Apache-2.0"
4-
version = "0.5.1"
4+
version = "0.6.0"
55
authors = ["MagicStack Inc. <hello@magic.io>"]
66
edition = "2021"
77
description = """
@@ -12,11 +12,11 @@ readme = "README.md"
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
gel-protocol = { path = "../gel-protocol", version = "0.6.0", features = [
15+
gel-protocol = { path = "../gel-protocol", version = "0.7", features = [
1616
"with-serde",
1717
] }
18-
gel-errors = { path = "../gel-errors", version = "0.4" }
19-
gel-derive = { path = "../gel-derive", version = "0.5.1", optional = true }
18+
gel-errors = { path = "../gel-errors", version = "0.5" }
19+
gel-derive = { path = "../gel-derive", version = "0.6", optional = true }
2020
tokio = { version = "1.15", features = ["net", "time", "sync", "macros"] }
2121
bytes = "1.5.0"
2222
scram = { version = "0.7", package = "scram-2" }

0 commit comments

Comments
 (0)