Skip to content

Commit 56d3459

Browse files
authored
cuprated: v0.0.2 version + changelog (Cuprate#413)
* update * !! * update * version
1 parent 159016f commit 56d3459

File tree

6 files changed

+45
-6
lines changed

6 files changed

+45
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

binaries/cuprated/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cuprated"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
description = "The Cuprate Rust Monero node."
66
license = "AGPL-3.0-only"

binaries/cuprated/src/constants.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ mod test {
4343
fn version() {
4444
let semantic_version = format!("{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}");
4545
assert_eq!(VERSION, VERSION);
46-
assert_eq!(VERSION, "0.0.1");
46+
assert_eq!(VERSION, "0.0.2");
4747
}
4848

4949
#[test]
5050
fn version_build() {
5151
if cfg!(debug_assertions) {
52-
assert_eq!(VERSION_BUILD, "0.0.1-debug");
52+
assert_eq!(VERSION_BUILD, "0.0.2-debug");
5353
} else {
54-
assert_eq!(VERSION_BUILD, "0.0.1-release");
54+
assert_eq!(VERSION_BUILD, "0.0.2-release");
5555
}
5656
}
5757
}

misc/changelogs/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Changelogs
2-
This directory holds changelog files for binaries/libraries.
2+
This directory holds changelog files for binaries/libraries.
3+
4+
The `latest.md` file is a symlink to the latest changelog.

misc/changelogs/cuprated/0.0.2.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# cuprated 0.0.2 Molybdenite (2025-04-09)
2+
Cuprate is an alternative Monero node implementation.
3+
4+
This is the second release of the Cuprate node, `cuprated`.
5+
6+
To get started, see: <https://user.cuprate.org>.
7+
8+
For an FAQ on Cuprate, see: <https://user.cuprate.org/#faq>.
9+
10+
## Changes
11+
- 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))
12+
- Blockchain reorganizations fixes ([#408](https://github.com/Cuprate/cuprate/pull/408))
13+
- STDOUT/STDIN fixes ([#415](https://github.com/Cuprate/cuprate/pull/415))
14+
- Replace remaining `println` with `tracing` ([#417](https://github.com/Cuprate/cuprate/pull/417))
15+
- Fix blockchain database error mappings ([#419](https://github.com/Cuprate/cuprate/pull/419))
16+
- Update `fast-sync` to height `3384832` ([#427](https://github.com/Cuprate/cuprate/pull/427))
17+
18+
## Downloads
19+
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>.
20+
21+
| OS | Architecture | Download |
22+
|---------|--------------|----------|
23+
| Linux | x64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-linux-x64.tar.gz>
24+
| Linux | ARM64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-linux-arm64.tar.gz>
25+
| macOS | x64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-macos-x64.tar.gz>
26+
| macOS | ARM64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-macos-arm64.tar.gz>
27+
| Windows | x64 | <https://github.com/Cuprate/cuprate/releases/download/cuprated-0.0.2/cuprated-0.0.2-windows-x64.zip>
28+
29+
## Contributors
30+
Thank you to everyone who directly contributed to this release:
31+
32+
- @Boog900
33+
- @hinto-janai
34+
- @jermanuts
35+
36+
There are other contributors that are not listed here, thank you to them as well.

misc/changelogs/cuprated/latest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.2.md

0 commit comments

Comments
 (0)