Skip to content

Commit 111ef75

Browse files
authored
Drop the -dev suffix of solana contract versions (#1128)
1 parent 4f408f3 commit 111ef75

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+84
-84
lines changed

chains/solana/contracts/Cargo.lock

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

chains/solana/contracts/programs/base-token-pool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "base-token-pool"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

chains/solana/contracts/programs/burnmint-token-pool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "burnmint-token-pool"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

@@ -20,7 +20,7 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
2020
anchor-spl = "0.29.0"
2121
solana-program = "1.17.25" # pin solana to 1.17
2222
spl-math = { version = "0.2.0", features = [ "no-entrypoint" ] }
23-
base-token-pool = { version = "0.1.1-dev", path = "../base-token-pool/", features = ["no-entrypoint"] }
23+
base-token-pool = { version = "0.1.1", path = "../base-token-pool/", features = ["no-entrypoint"] }
2424
rmn_remote = {path = "../rmn-remote", features = ["cpi"]}
2525
ccip_common = {path = "../ccip-common"}
2626

chains/solana/contracts/programs/ccip-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ccip_common"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[lib]

chains/solana/contracts/programs/ccip-offramp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ccip_offramp"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

chains/solana/contracts/programs/ccip-router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ccip_router"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66
build = "build.rs"

chains/solana/contracts/programs/cctp-token-pool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cctp-token-pool"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "USDC Token Pool for CCIP utilizing CCTP"
55
edition = "2021"
66

@@ -18,7 +18,7 @@ default = []
1818
[dependencies]
1919
anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
2020
anchor-spl = "0.29.0"
21-
base-token-pool = { version = "0.1.1-dev", path = "../base-token-pool/", features = ["no-entrypoint"] }
21+
base-token-pool = { version = "0.1.1", path = "../base-token-pool/", features = ["no-entrypoint"] }
2222
ccip_common = {path = "../ccip-common"}
2323
solana-program = "1.17.25"
2424

chains/solana/contracts/programs/example-ccip-receiver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "example_ccip_receiver"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

chains/solana/contracts/programs/example-ccip-sender/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "example_ccip_sender"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

@@ -20,7 +20,7 @@ custom-heap = []
2020
solana-program = "1.17.25" # pin solana to 1.17
2121
anchor-lang = { version = "0.29.0", features = [] }
2222
anchor-spl = "0.29.0"
23-
ccip_router = { version = "0.1.1-dev", path = "../ccip-router", features = ["no-entrypoint"]}
23+
ccip_router = { version = "0.1.1", path = "../ccip-router", features = ["no-entrypoint"]}
2424
smalloc = "0.1.2"
2525

2626
[lints.rust.unexpected_cfgs]

chains/solana/contracts/programs/fee-quoter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fee_quoter"
3-
version = "0.1.1-dev"
3+
version = "0.1.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

0 commit comments

Comments
 (0)