Skip to content

Commit

Permalink
chore: bump main to 1.6.0 👆 (#5081)
Browse files Browse the repository at this point in the history
* chore: bump `main` to `1.6.0` 👆

* chore: use `.dylib` built on GHA M2 runner 🥽

* fix: get `1.4.6` dylib 🐛

* fix: use correct path 🙈

* fix: use `curl` and dump `wget` 🤬

* chore: run upgrade test 👹

* Revert "chore: run upgrade test 👹"

This reverts commit dc15f0d.
  • Loading branch information
ahasna committed Jul 24, 2024
1 parent 09e7c6d commit eb4afb6
Show file tree
Hide file tree
Showing 18 changed files with 34 additions and 32 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/upgrade-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ jobs:
chmod +x ${{ env.BINARY_ROOT_PATH }}/engine-runner
echo "/usr/lib before copy of .so files"
ls -l /usr/lib
# TODO: Remove this once we have implemented fetching the shared libs in the engine-runner build script
curl https://repo.chainflip.io/lib/1_4_6/libchainflip_engine_v1_4_6.so -o /usr/lib/libchainflip_engine_v1_4_6.so
sudo cp ${{ env.BINARY_ROOT_PATH }}/libchainflip_engine_v*.so /usr/lib/
sudo cp ./upgrade-to-bins/libchainflip_engine_v*.so /usr/lib/
echo "/usr/lib after copy of .so files"
Expand Down
22 changes: 11 additions & 11 deletions 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 api/bin/chainflip-broker-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Chainflip team <https://github.com/chainflip-io>"]
name = "chainflip-broker-api"
version = "1.5.0"
version = "1.6.0"
edition = "2021"

[package.metadata.deb]
Expand Down
2 changes: 1 addition & 1 deletion api/bin/chainflip-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Chainflip team <https://github.com/chainflip-io>"]
edition = '2021'
build = 'build.rs'
name = "chainflip-cli"
version = "1.5.0"
version = "1.6.0"

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion api/bin/chainflip-ingress-egress-tracker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chainflip-ingress-egress-tracker"
version = "1.5.0"
version = "1.6.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion api/bin/chainflip-lp-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Chainflip team <https://github.com/chainflip-io>"]
name = "chainflip-lp-api"
version = "1.5.0"
version = "1.6.0"
edition = "2021"

[package.metadata.deb]
Expand Down
2 changes: 1 addition & 1 deletion api/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chainflip-api"
version = "1.5.0"
version = "1.6.0"
edition = "2021"

[lints]
Expand Down
4 changes: 2 additions & 2 deletions engine-dylib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ authors = ["Chainflip team <https://github.com/chainflip-io>"]
build = 'build.rs'
edition = '2021'
name = "cf-engine-dylib"
version = "1.5.0"
version = "1.6.0"

[lib]
crate-type = ["cdylib"]
name = "chainflip_engine_v1_5_0"
name = "chainflip_engine_v1_6_0"
path = 'src/lib.rs'

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion engine-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = '2021'
name = "engine-proc-macros"
# The version here is the version that will be used for the generated code, and therefore will be the
# suffix of the generated engine entrypoint. TODO: Fix this.
version = "1.5.0"
version = "1.6.0"

[lib]
proc-macro = true
Expand Down
Loading

0 comments on commit eb4afb6

Please sign in to comment.