Skip to content

Commit 5b05c1e

Browse files
committed
version crates
1 parent 3e4fd2f commit 5b05c1e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/rust-publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
# Will run if 'Main' workflow was successful on main branch.
2+
# Upon detecting a version bump in any of the workspace's crates (checks against crates.io),
3+
# it will publish the new version.
4+
15
name: Release Rust Crates
26

3-
# Will run if 'Main' workflow was successful on main branch
47
on:
58
workflow_run:
69
workflows: [ "Main" ]

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.

clients/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-token-wrap-cli"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "Solana Program Library Token Wrap command-line utility"
55
authors = { workspace = true }
66
repository = { workspace = true }

program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-token-wrap"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "Solana Program Library Token Wrap"
55
authors = { workspace = true }
66
repository = { workspace = true }

0 commit comments

Comments
 (0)