Skip to content

Commit

Permalink
2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
augustbleeds committed Sep 27, 2024
1 parent 0f29077 commit aeb4aa3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-cairo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ description: A composite action that installs cairo and scarb binaries
inputs:
cairo_version:
description: Cairo release version
default: "v2.7.1"
default: "v2.7.0"
required: false
scarb_version:
description: Scarb release version
default: "2.7.1"
default: "2.7.0"
required: false

runs:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mockery 2.22.1
golangci-lint 1.55.0
actionlint 1.6.12
shellcheck 0.8.0
scarb 2.7.1
scarb 2.7.0
postgres 15.1
starknet-foundry 0.27.0

Expand Down
4 changes: 2 additions & 2 deletions contracts/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "chainlink"
version = "0.1.0"
cairo-version = "2.7.1"
cairo-version = "2.7.0"
description = "Chainlink contracts for Starknet"
homepage = "https://github.com/smartcontractkit/chainlink-starknet"

Expand All @@ -13,7 +13,7 @@ test = "snforge test"
# Uncomment if you want to use dependencies
# Note: currently testing doesn't work with dependencies
[dependencies]
starknet = "2.7.1"
starknet = "2.7.0"
openzeppelin = { git = "https://github.com/OpenZeppelin/cairo-contracts.git", tag = "v0.15.1" }
alexandria_bytes = { git = "https://github.com/keep-starknet-strange/alexandria.git" }
alexandria_encoding = { git = "https://github.com/keep-starknet-strange/alexandria.git" }
Expand Down
4 changes: 2 additions & 2 deletions examples/contracts/aggregator_consumer/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[package]
name = "aggregator_consumer"
version = "0.1.0"
cairo-version = "2.7.1"
cairo-version = "2.7.0"

[scripts]
test = "snforge test"
Expand All @@ -18,7 +18,7 @@ test = "snforge test"

[dependencies]
chainlink = { path = "../../../contracts" }
starknet = "2.7.1"
starknet = "2.7.0"
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.27.0" }

[lib]
Expand Down
4 changes: 2 additions & 2 deletions examples/contracts/aggregator_consumer/scripts/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "src"
version = "0.1.0"
cairo-version = "2.7.1"
cairo-version = "2.7.0"

# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html

[dependencies]
sncast_std = { git = "https://github.com/foundry-rs/starknet-foundry.git", tag = "v0.27.0" }
chainlink = { path = "../../../../contracts" }
aggregator_consumer = { path = "../" }
starknet = "2.7.1"
starknet = "2.7.0"

[lib]
casm = true
Expand Down

0 comments on commit aeb4aa3

Please sign in to comment.