Skip to content

Commit c1c4bcb

Browse files
Bump version to 0.10.0 (#54)
1 parent 3ad08fd commit c1c4bcb

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/actions/verify-crate-availability/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
description: 'Name of the crate to verify'
66
required: true
77
version:
8-
description: 'Version of the crate to verify (e.g., 0.9.0)'
8+
description: 'Version of the crate to verify (e.g., 0.10.0)'
99
required: true
1010
max-attempts:
1111
description: 'Maximum number of verification attempts'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Extract version from tag
6464
id: version
6565
run: |
66-
# Extract version from tag (e.g., refs/tags/v0.9.0 -> 0.9.0)
66+
# Extract version from tag (e.g., refs/tags/v0.10.0 -> 0.10.0)
6767
VERSION=${GITHUB_REF#refs/tags/v}
6868
echo "version=$VERSION" >> $GITHUB_OUTPUT
6969
echo "Extracted version: $VERSION"

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Tamaro Skaljic<mail@tamaro-skaljic.de>"]
33
name = "spacetimedsl"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2024"
66
description = "Ergonomic DSL for SpacetimeDB"
77
documentation = "https://docs.rs/spacetimedsl"
@@ -17,7 +17,7 @@ readme = "README.md"
1717
spacetimedb = "1.2.0"
1818

1919
# https://crates.io/crates/spacetimedsl_derive Macros to extend SpacetimeDSL
20-
spacetimedsl_derive = { version = "0.9.0", path = "derive" }
20+
spacetimedsl_derive = { version = "0.10.0", path = "derive" }
2121

2222
# https://crates.io/crates/itertools Extra iterator adaptors, iterator methods, free functions, and macros.
2323
itertools = "^0.14"

derive-input/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Tamaro Skaljic<mail@tamaro-skaljic.de>"]
33
name = "spacetimedsl_derive-input"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2024"
66
description = "Contains structs which represent the input and output of SpacetimeDSL. Can be used by other proc-macro crates to build Macros which utilize SpacetimeDSL under the hood."
77
documentation = "https://docs.rs/spacetimedsl_derive-input"

derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Tamaro Skaljic<mail@tamaro-skaljic.de>"]
33
name = "spacetimedsl_derive"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
edition = "2024"
66
description = "Macros to extend SpacetimeDSL. You shouldn't depend on this directly and instead use the spacetimedsl crate."
77
documentation = "https://docs.rs/spacetimedsl_derive"
@@ -31,4 +31,4 @@ quote = "1.0"
3131
rust-format = { version = "0.3.4", features = [ "pretty_please", "token_stream" ]}
3232

3333
# https://crates.io/crates/spacetimedsl_derive-input Contains structs which represent the output of SpacetimeDSL. Can be used by other proc-macro crates to build Macros which utilize SpacetimeDSL under the hood.
34-
spacetimedsl_derive-input = { version = "0.9.0", path = "../derive-input" }
34+
spacetimedsl_derive-input = { version = "0.10.0", path = "../derive-input" }

example/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedsl_test"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2024"
55
publish = false
66

@@ -22,7 +22,7 @@ syn = { default-features = false, features = [
2222
], version = "2.0.103" }
2323

2424
# https://crates.io/crates/spacetimedsl Ergonomic DSL for SpacetimeDB
25-
spacetimedsl = { version = "0.9.0", path = "../" }
25+
spacetimedsl = { version = "0.10.0", path = "../" }
2626

2727
# https://crates.io/crates/log A lightweight logging facade for Rust
2828
log = "0.4"

0 commit comments

Comments
 (0)