Skip to content

Commit 540a226

Browse files
committed
fix versioning
1 parent a4ba7cc commit 540a226

File tree

7 files changed

+26
-15
lines changed

7 files changed

+26
-15
lines changed

.github/workflows/build_dev_container.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
name: Create Dev Image
22
on:
33
push:
4-
branches: ["master", "erhant/subcrates"]
5-
# paths:
6-
# - "src/**"
7-
# - "Cargo.lock"
8-
# - "Cargo.toml"
9-
# - "Dockerfile"
10-
# - "compose.yml"
4+
branches: ["master"]
5+
paths:
6+
# Source files in each member
7+
- "compute/src/**"
8+
- "p2p/src/**"
9+
- "workflows/src/**"
10+
# Cargo in each member
11+
- "compute/Cargo.toml"
12+
- "p2p/Cargo.toml"
13+
- "workflows/Cargo.toml"
14+
# root-level changes
15+
- "Cargo.lock"
16+
- "Cross.toml"
17+
- "Dockerfile"
18+
- "compose.yml"
1119

1220
jobs:
1321
build-and-push:

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ members = ["compute", "p2p", "workflows"]
55
# then, a Launcher will be the default member
66
default-members = ["compute"]
77

8+
[workspace.package]
9+
edition = "2021"
10+
version = "0.2.11"
11+
license = "Apache-2.0"
12+
readme = "README.md"
13+
814
# profiling build for flamegraphs
915
[profile.profiling]
1016
inherits = "release"
1117
debug = true
1218

13-
[workspace.package]
14-
edition = "2021"
15-
license = "Apache-2.0"
1619

1720
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1821

File renamed without changes.

compute/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dkn-compute"
3-
version = "0.2.11"
3+
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
66
readme = "README.md"

p2p/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dkn-p2p"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
66
readme = "README.md"

workflows/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dkn-workflows"
3-
version = "0.1.0"
3+
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
66
readme = "README.md"

0 commit comments

Comments
 (0)