Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.6.1 changes #1733

Merged
merged 2 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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 = "v0.6.0";
pub const CITREA_VERSION: &str = "v0.6.1";

/// Fork module
pub mod fork;
Expand Down
8 changes: 4 additions & 4 deletions docs/run-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down
Loading