From 5dced9adfbdd180357ac8db358c3b782b9e3403f Mon Sep 17 00:00:00 2001 From: Jordan Oroshiba Date: Wed, 9 Apr 2025 09:29:55 -0700 Subject: [PATCH 1/2] release: sequencer release 2.0.1 --- Cargo.lock | 2 +- crates/astria-sequencer/CHANGELOG.md | 5 ++++- crates/astria-sequencer/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e082f2a26c..03c994bcd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -854,7 +854,7 @@ dependencies = [ [[package]] name = "astria-sequencer" -version = "2.0.0" +version = "2.0.1" dependencies = [ "assert-json-diff", "astria-build-info", diff --git a/crates/astria-sequencer/CHANGELOG.md b/crates/astria-sequencer/CHANGELOG.md index 3c9d816fa6..ce05795623 100644 --- a/crates/astria-sequencer/CHANGELOG.md +++ b/crates/astria-sequencer/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.1] + ### Security - Update to tendermint 0.40.3 for security patch to ISA-2025-003 [#2099](https://github.com/astriaorg/astria/pull/2099) @@ -515,7 +517,8 @@ address [#721](https://github.com/astriaorg/astria/pull/721). - Initial release. -[unreleased]: https://github.com/astriaorg/astria/compare/sequencer-v2.0.0-rc.2...HEAD +[unreleased]: https://github.com/astriaorg/astria/compare/sequencer-v2.0.1...HEAD +[2.0.1]: https://github.com/astriaorg/astria/compare/sequencer-v2.0.0...sequencer-v2.0.1 [2.0.0]: https://github.com/astriaorg/astria/compare/sequencer-v1.0.0...sequencer-v2.0.0 [2.0.0-rc.2]: https://github.com/astriaorg/astria/compare/sequencer-v2.0.0-rc.1...sequencer-v2.0.0-rc.2 [2.0.0-rc.1]: https://github.com/astriaorg/astria/compare/sequencer-v1.0.0...sequencer-v2.0.0-rc.1 diff --git a/crates/astria-sequencer/Cargo.toml b/crates/astria-sequencer/Cargo.toml index ea123cb980..7f720bf74f 100644 --- a/crates/astria-sequencer/Cargo.toml +++ b/crates/astria-sequencer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "astria-sequencer" -version = "2.0.0" +version = "2.0.1" edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.83.0" From 9f46619f68a07d140e2d28f7fd9cca8544b17d75 Mon Sep 17 00:00:00 2001 From: Jordan Oroshiba Date: Wed, 9 Apr 2025 10:29:01 -0700 Subject: [PATCH 2/2] chart update --- charts/sequencer/Chart.yaml | 4 ++-- charts/sequencer/templates/_helpers.tpl | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/sequencer/Chart.yaml b/charts/sequencer/Chart.yaml index a9ecc66467..2cd7f4c6d5 100644 --- a/charts/sequencer/Chart.yaml +++ b/charts/sequencer/Chart.yaml @@ -15,12 +15,12 @@ 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: 2.0.1 +version: 2.0.2 # 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: "2.0.0" +appVersion: "2.0.1" dependencies: - name: sequencer-relayer diff --git a/charts/sequencer/templates/_helpers.tpl b/charts/sequencer/templates/_helpers.tpl index 65e18923ae..9faa07a029 100644 --- a/charts/sequencer/templates/_helpers.tpl +++ b/charts/sequencer/templates/_helpers.tpl @@ -7,9 +7,9 @@ Namepsace to deploy elements into. {{- define "sequencer.imageTag" -}} {{- if or (eq .Values.global.network "custom") (eq .Values.global.dev true) }}{{ .Values.images.sequencer.tag }} -{{- else if eq .Values.global.network "mainnet" }}2.0.0 -{{- else if eq .Values.global.network "dawn-1" }}2.0.0 -{{- else if eq .Values.global.network "dusk-11" }}2.0.0 +{{- else if eq .Values.global.network "mainnet" }}2.0.1 +{{- else if eq .Values.global.network "dawn-1" }}2.0.1 +{{- else if eq .Values.global.network "dusk-11" }}2.0.1 {{- end }} {{- end }}