From d43e0957a2a8491e9c1987441e4a6d3cd0665fd5 Mon Sep 17 00:00:00 2001 From: hinto-janai Date: Wed, 16 Jul 2025 20:35:29 +0000 Subject: [PATCH] Update repo to `cuprated 0.0.5` (#501) * apply * ks * update * 515 --- Cargo.lock | 2 +- binaries/cuprated/Cargo.toml | 2 +- binaries/cuprated/src/constants.rs | 6 ++--- binaries/cuprated/src/killswitch.rs | 8 +++---- books/user/book.toml | 2 +- books/user/src/getting-started/download.md | 10 ++++---- misc/changelogs/cuprated/0.0.5.md | 27 ++++++++++++++++++++++ misc/changelogs/cuprated/latest.md | 2 +- 8 files changed, 43 insertions(+), 16 deletions(-) create mode 100644 misc/changelogs/cuprated/0.0.5.md diff --git a/Cargo.lock b/Cargo.lock index 352b4a2..15743c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1113,7 +1113,7 @@ dependencies = [ [[package]] name = "cuprated" -version = "0.0.4" +version = "0.0.5" dependencies = [ "anyhow", "async-trait", diff --git a/binaries/cuprated/Cargo.toml b/binaries/cuprated/Cargo.toml index 4744d0c..64778a9 100644 --- a/binaries/cuprated/Cargo.toml +++ b/binaries/cuprated/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cuprated" -version = "0.0.4" +version = "0.0.5" edition = "2021" description = "The Cuprate Rust Monero node." license = "AGPL-3.0-only" diff --git a/binaries/cuprated/src/constants.rs b/binaries/cuprated/src/constants.rs index 29686bf..4aded0a 100644 --- a/binaries/cuprated/src/constants.rs +++ b/binaries/cuprated/src/constants.rs @@ -43,15 +43,15 @@ mod test { fn version() { let semantic_version = format!("{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"); assert_eq!(VERSION, VERSION); - assert_eq!(VERSION, "0.0.4"); + assert_eq!(VERSION, "0.0.5"); } #[test] fn version_build() { if cfg!(debug_assertions) { - assert_eq!(VERSION_BUILD, "0.0.4-debug"); + assert_eq!(VERSION_BUILD, "0.0.5-debug"); } else { - assert_eq!(VERSION_BUILD, "0.0.4-release"); + assert_eq!(VERSION_BUILD, "0.0.5-release"); } } } diff --git a/binaries/cuprated/src/killswitch.rs b/binaries/cuprated/src/killswitch.rs index d76c005..1f47557 100644 --- a/binaries/cuprated/src/killswitch.rs +++ b/binaries/cuprated/src/killswitch.rs @@ -32,8 +32,8 @@ const _: () = { /// The killswitch activates if the current timestamp is ahead of this timestamp. /// -/// Wed Jul 23 12:00:00 AM UTC 2025 -pub const KILLSWITCH_ACTIVATION_TIMESTAMP: u64 = 1753228800; +/// Wed Sep 3 12:00:00 AM UTC 2025 +pub const KILLSWITCH_ACTIVATION_TIMESTAMP: u64 = 1756857600; /// Check if the system clock is past a certain timestamp, /// if so, exit the entire program. @@ -44,8 +44,8 @@ fn killswitch() { /// sanity checking the system's clock to make /// sure it is not overly behind. /// - /// Wed Jun 4 12:36:45 PM UTC 2025 - const SYSTEM_CLOCK_SANITY_TIMESTAMP: u64 = 1749040605; + /// Tue Jul 15 05:20:00 PM UTC 2025 + const SYSTEM_CLOCK_SANITY_TIMESTAMP: u64 = 1752600000; let current_ts = current_unix_timestamp(); diff --git a/books/user/book.toml b/books/user/book.toml index 49d766c..dc936c0 100644 --- a/books/user/book.toml +++ b/books/user/book.toml @@ -3,7 +3,7 @@ authors = ["hinto-janai"] language = "en" multilingual = false src = "src" -title = "Cuprate User Book - v0.0.4" +title = "Cuprate User Book - v0.0.5" git-repository-url = "https://github.com/Cuprate/cuprate/books/user" [output.html] diff --git a/books/user/src/getting-started/download.md b/books/user/src/getting-started/download.md index 8b0cf01..5781e41 100644 --- a/books/user/src/getting-started/download.md +++ b/books/user/src/getting-started/download.md @@ -3,10 +3,10 @@ Cuprate offers pre-built binaries for `cuprated` for the platforms listed in [`P | Platform | Download | |------------------------------|----------| -| Windows x86_64 | -| macOS x86_64 | -| macOS ARM64 | -| Linux x86_64 (glibc >= 2.36) | -| Linux ARM64 (glibc >= 2.36) | +| Windows x86_64 | +| macOS x86_64 | +| macOS ARM64 | +| Linux x86_64 (glibc >= 2.36) | +| Linux ARM64 (glibc >= 2.36) | All release files are archived and also available at . diff --git a/misc/changelogs/cuprated/0.0.5.md b/misc/changelogs/cuprated/0.0.5.md new file mode 100644 index 0000000..0d67257 --- /dev/null +++ b/misc/changelogs/cuprated/0.0.5.md @@ -0,0 +1,27 @@ +# cuprated 0.0.5 Molybdenite (2025-07-16) +Cuprate is an alternative Monero node implementation. To get started, see: . + +## Changes +- Define Tor Zone, add onion addressing and more ([#481](https://github.com/Cuprate/cuprate/pull/481)) +- Update `fast-sync` to height `3456000` ([#502](https://github.com/Cuprate/cuprate/pull/502)) +- Fix `get_txid` for pre-RCT outputs ([#504](https://github.com/Cuprate/cuprate/pull/504)) +- RPC: enable `submit_block` and `/send_raw_transaction` ([#515](https://github.com/Cuprate/cuprate/pull/515)) + +## Downloads +For convenience, the following binaries are produced using GitHub CI in a non-reproducible way; it is highly recommended to build `cuprated` from source instead, see . + +| OS | Architecture | Download | +|---------|--------------|----------| +| Windows | 64 | +| macOS | x64 | +| macOS | ARM64 | +| Linux | x64 | +| Linux | ARM64 | + +## Contributors +Thank you to everyone who directly contributed to this release: + +- @hinto-janai +- @SyntheticBird45 + +There are other contributors that are not listed here, thank you to them as well. diff --git a/misc/changelogs/cuprated/latest.md b/misc/changelogs/cuprated/latest.md index efd3c73..d7b373d 120000 --- a/misc/changelogs/cuprated/latest.md +++ b/misc/changelogs/cuprated/latest.md @@ -1 +1 @@ -0.0.4.md \ No newline at end of file +0.0.5.md \ No newline at end of file