Skip to content

Commit 7ff07f3

Browse files
committed
chore(release): prepare for 0.14.3
1 parent f069504 commit 7ff07f3

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
## Verifying the Release
2+
In order to verify the release, you'll need to have gpg or gpg2 installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import the keys that have signed this release if you haven't done so already:
3+
```bash
4+
curl https://raw.githubusercontent.com/MostroP2P/mostro/main/keys/negrunch.asc | gpg --import
5+
curl https://raw.githubusercontent.com/MostroP2P/mostro/main/keys/arkanoider.asc | gpg --import
6+
```
7+
Once you have the required PGP keys, you can verify the release (assuming manifest.txt.sig.negrunch, manifest.txt.sig.arkanoider and manifest.txt are in the current directory) with:
8+
```bash
9+
gpg --verify manifest.txt.sig.negrunch manifest.txt
10+
gpg --verify manifest.txt.sig.arkanoider manifest.txt
11+
12+
gpg: Signature made fri 10 oct 2025 11:28:03 -03
13+
gpg: using RSA key 1E41631D137BA2ADE55344F73852B843679AD6F0
14+
gpg: Good signature from "Francisco Calderón <[email protected]>" [ultimate]
15+
16+
gpg: Signature made fri 10 oct 2025 11:28:03 -03
17+
gpg: using RSA key 2E986CA1C5E7EA1635CD059C4989CC7415A43AEC
18+
gpg: Good signature from "Arkanoider <[email protected]>" [ultimate]
19+
20+
```
21+
That will verify the signature of the manifest file, which ensures integrity and authenticity of the archive you've downloaded locally containing the binaries. Next, depending on your operating system, you should then re-compute the sha256 hash of the archive with `shasum -a 256 <filename>`, compare it with the corresponding one in the manifest file, and ensure they match exactly.
22+
23+
24+
## What's Changed in 0.14.3
25+
26+
### 🚀 Features
27+
28+
29+
* committed cargo.toml with changelog.md
30+
* added local changelog.md file creation with cargo release
31+
32+
### 🐛 Bug Fixes
33+
34+
35+
* correct receiver of restore session message
36+
37+
**Full Changelog**: https://github.com/MostroP2P/mostro-cli/compare/v0.14.2...0.14.3
38+
39+
<!-- generated by git-cliff -->

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mostro-cli"
3-
version = "0.14.2"
3+
version = "0.14.3"
44
edition = "2021"
55
license = "MIT"
66
authors = [

0 commit comments

Comments
 (0)