From 3a968fb57c4f3c56012d31870810240595bd3d4d Mon Sep 17 00:00:00 2001 From: Jordan Oroshiba Date: Tue, 4 Jun 2024 13:12:39 -0700 Subject: [PATCH] chore(conductor): release conductor 0.17 (#1139) ## Summary Release latest conductor & chart version using it w/ latest Geth. ## Background Breaking change to engine API was made which improves sync time on restart, needs release with compatible EVM version --- Cargo.lock | 2 +- charts/evm-rollup/Chart.yaml | 4 ++-- charts/evm-rollup/values.yaml | 4 ++-- crates/astria-conductor/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd7bb35d6..d13019d84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -600,7 +600,7 @@ dependencies = [ [[package]] name = "astria-conductor" -version = "0.16.0" +version = "0.17.0" dependencies = [ "astria-build-info", "astria-config", diff --git a/charts/evm-rollup/Chart.yaml b/charts/evm-rollup/Chart.yaml index a95d1cdb2..5440184f5 100644 --- a/charts/evm-rollup/Chart.yaml +++ b/charts/evm-rollup/Chart.yaml @@ -15,13 +15,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.18.6 +version: 0.19.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.10.1" +appVersion: "0.11.0" dependencies: - name: celestia-node diff --git a/charts/evm-rollup/values.yaml b/charts/evm-rollup/values.yaml index 05e13711a..abbad5470 100644 --- a/charts/evm-rollup/values.yaml +++ b/charts/evm-rollup/values.yaml @@ -9,11 +9,11 @@ global: images: geth: repo: ghcr.io/astriaorg/astria-geth - tag: 0.10.1 + tag: 0.11.0 devTag: latest conductor: repo: ghcr.io/astriaorg/conductor - tag: "0.16.0" + tag: "0.17.0" devTag: latest composer: repo: ghcr.io/astriaorg/composer diff --git a/crates/astria-conductor/Cargo.toml b/crates/astria-conductor/Cargo.toml index 6ec63a3ac..71bb11199 100644 --- a/crates/astria-conductor/Cargo.toml +++ b/crates/astria-conductor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "astria-conductor" -version = "0.16.0" +version = "0.17.0" edition = "2021" rust-version = "1.73" license = "MIT OR Apache-2.0"