From 2108cf86705366a15033fa1a5f8b95133f42e251 Mon Sep 17 00:00:00 2001 From: eyusufatik Date: Tue, 21 Jan 2025 15:11:18 +0300 Subject: [PATCH 1/2] update rpc node version to v0.6.1 --- crates/sovereign-sdk/rollup-interface/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sovereign-sdk/rollup-interface/src/lib.rs b/crates/sovereign-sdk/rollup-interface/src/lib.rs index 94a89282a..841721f63 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.6.0"; +pub const CITREA_VERSION: &str = "v0.6.1"; /// Fork module pub mod fork; From 34ed9966903061a67946ef5be9642ab15dfeb9de Mon Sep 17 00:00:00 2001 From: eyusufatik Date: Tue, 21 Jan 2025 15:11:37 +0300 Subject: [PATCH 2/2] update docs --- CHANGELOG.md | 3 +++ docs/run-testnet.md | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ac0eaf8c..939a73f32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.6.1 (2025-1-21) +- Fix LedgerDB migration process ([#1730](https://github.com/chainwayxyz/citrea/pull/1730)) + ## v0.6.0 (2025-1-20) Citrea Kumquat upgrade will go live on testnet at block 5546000, activating many new features: - EVM Cancun support. diff --git a/docs/run-testnet.md b/docs/run-testnet.md index e9eafb3cb..df2d465bf 100644 --- a/docs/run-testnet.md +++ b/docs/run-testnet.md @@ -117,7 +117,7 @@ Finally run this command to run your Citrea full node: Mac: ```sh -RISC0_DEV_MODE=1 ./citrea-v0.6.0-osx-arm64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis +RISC0_DEV_MODE=1 ./citrea-v0.6.1-osx-arm64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis ``` or if you wish to use environment variables for configuring your node: @@ -147,12 +147,12 @@ SYNC_BLOCKS_COUNT=10 \ RUST_LOG=info \ JSON_LOGS=1 \ RISC0_DEV_MODE=1 \ -./citrea-v0.6.0-osx-arm64 --network testnet --da-layer bitcoin --genesis-paths ./genesis +./citrea-v0.6.1-osx-arm64 --network testnet --da-layer bitcoin --genesis-paths ./genesis ``` Linux: ```sh -RISC0_DEV_MODE=1 ./citrea-v0.6.0-linux-amd64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis +RISC0_DEV_MODE=1 ./citrea-v0.6.1-linux-amd64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis ``` or if you wish to use environment variables for configuring your node: @@ -183,7 +183,7 @@ SYNC_BLOCKS_COUNT=10 \ RUST_LOG=info \ JSON_LOGS=1 \ RISC0_DEV_MODE=1 \ -./citrea-v0.6.0-linux-amd64 --network testnet --da-layer bitcoin --genesis-paths ./genesis +./citrea-v0.6.1-linux-amd64 --network testnet --da-layer bitcoin --genesis-paths ./genesis ``` Your full node should be serving RPC at `http://0.0.0.0:8080` now.