Skip to content

Commit

Permalink
Bump contract versions to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer authored and krebernisak committed Mar 30, 2022
1 parent 243e55a commit bb45fb1
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions contracts/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/crates/arrayvec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arrayvec"
version = "0.1.0"
version = "1.0.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion contracts/crates/chainlink-solana/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "chainlink_solana"
description = "Chainlink client for Solana"
version = "0.1.2"
version = "1.0.0"
edition = "2018"
license = "MIT"

Expand Down
4 changes: 2 additions & 2 deletions contracts/programs/access-controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "access-controller"
version = "0.1.0"
version = "1.0.0"
description = "Created with Anchor"
edition = "2018"

Expand All @@ -17,4 +17,4 @@ default = []
[dependencies]
anchor-lang = "0.23.0"
static_assertions = "1.1.0"
arrayvec = { version = "0.1.0", path = "../../crates/arrayvec" }
arrayvec = { version = "1.0.0", path = "../../crates/arrayvec" }
8 changes: 4 additions & 4 deletions contracts/programs/ocr2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocr2"
version = "0.1.0"
version = "1.0.0"
description = "Created with Anchor"
edition = "2018"

Expand All @@ -18,8 +18,8 @@ default = []
anchor-lang = { version = "0.23.0", features = [] }
anchor-spl = "0.23.0"
static_assertions = "1.1.0"
access-controller = { version = "0.1.0", path = "../access-controller", default-features = false, features = ["cpi"] }
store = { version = "0.1.0", path = "../store", default-features = false, features = ["cpi"] }
access-controller = { version = "1.0.0", path = "../access-controller", default-features = false, features = ["cpi"] }
store = { version = "1.0.0", path = "../store", default-features = false, features = ["cpi"] }
arrayref = "0.3.6"
arrayvec = { version = "0.1.0", path = "../../crates/arrayvec" }
arrayvec = { version = "1.0.0", path = "../../crates/arrayvec" }
bytemuck = "1.7"
4 changes: 2 additions & 2 deletions contracts/programs/store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "store"
version = "0.1.0"
version = "1.0.0"
description = "Created with Anchor"
edition = "2018"

Expand All @@ -16,5 +16,5 @@ default = []

[dependencies]
anchor-lang = "0.23.0"
access-controller = { version = "0.1.0", path = "../access-controller", default-features = false, features = ["cpi"] }
access-controller = { version = "1.0.0", path = "../access-controller", default-features = false, features = ["cpi"] }
bytemuck = "1.7.2"

0 comments on commit bb45fb1

Please sign in to comment.