From f17bab2235ce72bd914a49bb0b0b7b1b17ecb648 Mon Sep 17 00:00:00 2001 From: Esad Yusuf Atik Date: Mon, 9 Dec 2024 14:45:51 +0300 Subject: [PATCH] prepare v0.5.5 (#1574) --- CHANGELOG.md | 8 ++++++++ crates/sovereign-sdk/rollup-interface/src/lib.rs | 2 +- docs/run-testnet.md | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b15ae93e2..c98e90714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.5.5 (2024-12-9) +- 100 wei constant priority fee suggestion from nodes. ([#1561](https://github.com/chainwayxyz/citrea/pull/1561)) +- Sequencer checks compressed diff size of a commitment before commiting. ([#1349](https://github.com/chainwayxyz/citrea/pull/1349) and [#1557](https://github.com/chainwayxyz/citrea/pull/1557)) +- `prover_prove` RPC method now available. ([#1335](https://github.com/chainwayxyz/citrea/pull/1335)) +- Prover can now prove locally. ([#1326](https://github.com/chainwayxyz/citrea/pull/1326)) +- Prover, sequencer and node configs can now be passed through environment variables. ([#1320](https://github.com/chainwayxyz/citrea/pull/1320)) +- Fix Bitcoin DA adapter fee estimation infinite loop bug. ([#1330](https://github.com/chainwayxyz/citrea/pull/1330)) + ## v0.5.4 (2024-10-11) - Fixed gas estimation for when a tx has gas limit < block gas limit but with the L1 fee overhead the gas estimation is returned > block gas limit. Preventing transactions from landing on chain. ([#1323](https://github.com/chainwayxyz/citrea/pull/1323)) - Better use of `tokio::spawn_blocking` in Bitcoin DA adapter. ([#1321](https://github.com/chainwayxyz/citrea/pull/1321) [#1324](https://github.com/chainwayxyz/citrea/pull/1324)) diff --git a/crates/sovereign-sdk/rollup-interface/src/lib.rs b/crates/sovereign-sdk/rollup-interface/src/lib.rs index c11114493..b5fde562f 100644 --- a/crates/sovereign-sdk/rollup-interface/src/lib.rs +++ b/crates/sovereign-sdk/rollup-interface/src/lib.rs @@ -12,7 +12,7 @@ extern crate alloc; /// /// Mostly used for web3_clientVersion RPC calls and might be used for other purposes. #[cfg(feature = "native")] -pub const CITREA_VERSION: &str = "v0.5.4"; +pub const CITREA_VERSION: &str = "v0.5.5"; mod state_machine; pub use state_machine::*; diff --git a/docs/run-testnet.md b/docs/run-testnet.md index 5339cd63b..ea6e251ab 100644 --- a/docs/run-testnet.md +++ b/docs/run-testnet.md @@ -117,12 +117,12 @@ Finally run this command to run your Citrea full node: Mac: ```sh -./citrea-v0.5.4-osx-arm64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis +./citrea-v0.5.5-osx-arm64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis ``` Linux: ```sh -./citrea-v0.5.4-linux-amd64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis +./citrea-v0.5.5-linux-amd64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis ``` Your full node should be serving RPC at `http://0.0.0.0:8080` now.