Skip to content
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion binaries/cuprated/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cuprated"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
description = "The Cuprate Rust Monero node."
license = "AGPL-3.0-only"
Expand Down
6 changes: 3 additions & 3 deletions binaries/cuprated/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.1");
assert_eq!(VERSION, "0.0.2");
}

#[test]
fn version_build() {
if cfg!(debug_assertions) {
assert_eq!(VERSION_BUILD, "0.0.1-debug");
assert_eq!(VERSION_BUILD, "0.0.2-debug");
} else {
assert_eq!(VERSION_BUILD, "0.0.1-release");
assert_eq!(VERSION_BUILD, "0.0.2-release");
}
}
}
4 changes: 3 additions & 1 deletion misc/changelogs/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Changelogs
This directory holds changelog files for binaries/libraries.
This directory holds changelog files for binaries/libraries.

The `latest.md` file is a symlink to the latest changelog.
36 changes: 36 additions & 0 deletions misc/changelogs/cuprated/0.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# cuprated 0.0.2 Molybdenite (2025-04-09)
Cuprate is an alternative Monero node implementation.

This is the second release of the Cuprate node, `cuprated`.

To get started, see: <https://user.cuprate.org>.

For an FAQ on Cuprate, see: <https://user.cuprate.org/#faq>.

## Changes
- User book changes, config documentation ([#402](https://github.com/Cuprate/cuprate/pull/402), [#406](https://github.com/Cuprate/cuprate/pull/406), [#418](https://github.com/Cuprate/cuprate/pull/418))
- Blockchain reorganizations fixes ([#408](https://github.com/Cuprate/cuprate/pull/408))
- STDOUT/STDIN fixes ([#415](https://github.com/Cuprate/cuprate/pull/415))
- Replace remaining `println` with `tracing` ([#417](https://github.com/Cuprate/cuprate/pull/417))
- Fix blockchain database error mappings ([#419](https://github.com/Cuprate/cuprate/pull/419))
- Update `fast-sync` to height `3384832` ([#427](https://github.com/Cuprate/cuprate/pull/427))

## 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 <https://user.cuprate.org/getting-started/source>.

| OS | Architecture | Download |
|---------|--------------|----------|
| Linux | x64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-linux-x64.tar.gz>
| Linux | ARM64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-linux-arm64.tar.gz>
| macOS | x64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-macos-x64.tar.gz>
| macOS | ARM64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-macos-arm64.tar.gz>
| Windows | x64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-windows-x64.zip>

## Contributors
Thank you to everyone who directly contributed to this release:

- @Boog900
- @hinto-janai
- @jermanuts

There are other contributors that are not listed here, thank you to them as well.
1 change: 1 addition & 0 deletions misc/changelogs/cuprated/latest.md