diff --git a/CHANGELOG.md b/CHANGELOG.md index 30590d4e9..b15ae93e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 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)) + ## v0.5.3 (2024-10-10) - `eth_call` RPC now supports state and block overrides. ([#1270](https://github.com/chainwayxyz/citrea/pull/1270)) - `eth_call`, `eth_estimateGas` and `eth_createAccessList` RPCs now supports "pending" block tag. ([#1303](https://github.com/chainwayxyz/citrea/pull/1303)) diff --git a/crates/sovereign-sdk/rollup-interface/src/lib.rs b/crates/sovereign-sdk/rollup-interface/src/lib.rs index e06d79054..c11114493 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 = env!("CARGO_PKG_VERSION"); +pub const CITREA_VERSION: &str = "v0.5.4"; mod state_machine; pub use state_machine::*; diff --git a/docs/run-testnet.md b/docs/run-testnet.md index 10d37abad..5339cd63b 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.3-osx-arm64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis +./citrea-v0.5.4-osx-arm64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis ``` Linux: ```sh -./citrea-v0.5.3-linux-amd64 --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis +./citrea-v0.5.4-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.