Skip to content

Commit

Permalink
prepare v0.5.4 (#1327)
Browse files Browse the repository at this point in the history
* update version number in doc and update changelog

* update neglected CITREA_VERSION constant
  • Loading branch information
eyusufatik authored Oct 11, 2024
1 parent ec3d2d5 commit 16dac23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion crates/sovereign-sdk/rollup-interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::*;
Expand Down
4 changes: 2 additions & 2 deletions docs/run-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 16dac23

Please sign in to comment.