Skip to content

Commit 6c989eb

Browse files
author
Mark Qvist
committed
Prepare release
1 parent 137d73a commit 6c989eb

25 files changed

Lines changed: 115 additions & 78 deletions

Changelog.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
### 2026-05-19: RNS 1.2.9
2+
3+
This release completes the operational functionality of the `rngit` system, which now has full release creation, fetch and verified update support using the `rngit release` command. Additionally, two chapters have been added to the manual should cover all the things that `rngit` is currently capable of.
4+
5+
**Changes**
6+
- Added full `rngit` documentation to the manual
7+
- Added offline `.rsm` release manifest verification
8+
- Added the ability to fetch release updates directly from `.rsm` manifests
9+
- Added canonical `.rsm` release structure validator to `rnid` for import
10+
- Added `.rsm` manifest saving when using `rngit release fetch`
11+
- Added remote `HEAD` tracking for forks and mirros to `rngit`
12+
- Improved known destinations persist reliability
13+
- Improved page node ref link handling in `rngit`
14+
- Improved logging in various locations
15+
16+
**Verified Retrieval**
17+
You can retrieve and verify this release over Reticulum using the built-in `rngit release` utility. To download all artifacts, and the release manifest for future updates, you can use the following command:
18+
19+
```sh
20+
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch latest:all --signer bc7291552be7a58f361522990465165c
21+
```
22+
23+
To retrieve only the `.whl` package for installation, you can use:
24+
25+
```sh
26+
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch latest:rns-1.2.8-py3-none-any.whl --signer bc7291552be7a58f361522990465165c
27+
```
28+
29+
**Release Signatures**
30+
Release artifacts include a signed `rsm` release manifest and `rsg` signature files that can be validated against the RNS release signing identity `<bc7291552be7a58f361522990465165c>` using `rnid`. To verify files, download the `rsm` and `rsg` signatures, make sure they are in the same folder as the release artifact, and run `rnid` signature verification with the release identity as the required signer:
31+
32+
```sh
33+
rnid -i bc7291552be7a58f361522990465165c -V manifest.rsm *.rsg
34+
```
35+
36+
The `rnid` utility will then verify the signatures, and display whether they are valid. If the signature cannot be verified, the release has been tampered with and should be discarded.
37+
138
### 2026-05-18: RNS 1.2.8
239

340
This release improves the `rngit` system with signed release manifest generation and automatic artifact signing. It also includes several additions to `rnid` and various minor fixes and improvements to the `rngit` system.

docs/Reticulum Manual.epub

16.7 KB
Binary file not shown.

docs/Reticulum Manual.pdf

42.6 KB
Binary file not shown.

docs/manual/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: d77ea3044971177c0a1e0c192353c10a
3+
config: eeadc4cc4157f9b7fb8f04414d9f0832
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/manual/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '1.2.8',
2+
VERSION: '1.2.9',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

docs/manual/distributed.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="prefetch" href="_static/rns_logo_512.png" as="image">
88

99
<!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25.dev1 -->
10-
<title>Distributed Development - Reticulum Network Stack 1.2.8 documentation</title>
10+
<title>Distributed Development - Reticulum Network Stack 1.2.9 documentation</title>
1111
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
1212
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
1313
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
@@ -180,7 +180,7 @@
180180
</label>
181181
</div>
182182
<div class="header-center">
183-
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.8 documentation</div></a>
183+
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.9 documentation</div></a>
184184
</div>
185185
<div class="header-right">
186186
<div class="theme-toggle-container theme-toggle-header">
@@ -204,7 +204,7 @@
204204
<img class="sidebar-logo" src="_static/rns_logo_512.png" alt="Logo"/>
205205
</div>
206206

207-
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.8 documentation</span>
207+
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.9 documentation</span>
208208

209209
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
210210
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -431,7 +431,7 @@ <h2>Start Of The Road<a class="headerlink" href="#start-of-the-road" title="Link
431431

432432
</aside>
433433
</div>
434-
</div><script src="_static/documentation_options.js?v=4d6f9085"></script>
434+
</div><script src="_static/documentation_options.js?v=e917149c"></script>
435435
<script src="_static/doctools.js?v=9bcbadda"></script>
436436
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
437437
<script src="_static/scripts/furo.js?v=46bd48cc"></script>

docs/manual/examples.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="prefetch" href="_static/rns_logo_512.png" as="image">
88

99
<!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25.dev1 -->
10-
<title>Code Examples - Reticulum Network Stack 1.2.8 documentation</title>
10+
<title>Code Examples - Reticulum Network Stack 1.2.9 documentation</title>
1111
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
1212
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
1313
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
@@ -180,7 +180,7 @@
180180
</label>
181181
</div>
182182
<div class="header-center">
183-
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.8 documentation</div></a>
183+
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.9 documentation</div></a>
184184
</div>
185185
<div class="header-right">
186186
<div class="theme-toggle-container theme-toggle-header">
@@ -204,7 +204,7 @@
204204
<img class="sidebar-logo" src="_static/rns_logo_512.png" alt="Logo"/>
205205
</div>
206206

207-
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.8 documentation</span>
207+
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.9 documentation</span>
208208

209209
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
210210
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -3665,7 +3665,7 @@ <h2>Buffer<a class="headerlink" href="#buffer" title="Link to this heading">¶</
36653665

36663666
</aside>
36673667
</div>
3668-
</div><script src="_static/documentation_options.js?v=4d6f9085"></script>
3668+
</div><script src="_static/documentation_options.js?v=e917149c"></script>
36693669
<script src="_static/doctools.js?v=9bcbadda"></script>
36703670
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
36713671
<script src="_static/scripts/furo.js?v=46bd48cc"></script>

docs/manual/forhumans.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="prefetch" href="_static/rns_logo_512.png" as="image">
88

99
<!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25.dev1 -->
10-
<title>An Explanation of Reticulum for Human Beings - Reticulum Network Stack 1.2.8 documentation</title>
10+
<title>An Explanation of Reticulum for Human Beings - Reticulum Network Stack 1.2.9 documentation</title>
1111
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
1212
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
1313
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
@@ -180,7 +180,7 @@
180180
</label>
181181
</div>
182182
<div class="header-center">
183-
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.8 documentation</div></a>
183+
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.9 documentation</div></a>
184184
</div>
185185
<div class="header-right">
186186
<div class="theme-toggle-container theme-toggle-header">
@@ -204,7 +204,7 @@
204204
<img class="sidebar-logo" src="_static/rns_logo_512.png" alt="Logo"/>
205205
</div>
206206

207-
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.8 documentation</span>
207+
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.9 documentation</span>
208208

209209
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
210210
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -296,7 +296,7 @@ <h1>An Explanation of Reticulum for Human Beings<a class="headerlink" href="#an-
296296

297297
</aside>
298298
</div>
299-
</div><script src="_static/documentation_options.js?v=4d6f9085"></script>
299+
</div><script src="_static/documentation_options.js?v=e917149c"></script>
300300
<script src="_static/doctools.js?v=9bcbadda"></script>
301301
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
302302
<script src="_static/scripts/furo.js?v=46bd48cc"></script>

docs/manual/genindex.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="#"><link rel="search" title="Search" href="search.html">
66
<link rel="prefetch" href="_static/rns_logo_512.png" as="image">
77

8-
<!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25.dev1 --><title>Index - Reticulum Network Stack 1.2.8 documentation</title>
8+
<!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25.dev1 --><title>Index - Reticulum Network Stack 1.2.9 documentation</title>
99
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
1010
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
1111
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
@@ -178,7 +178,7 @@
178178
</label>
179179
</div>
180180
<div class="header-center">
181-
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.8 documentation</div></a>
181+
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.9 documentation</div></a>
182182
</div>
183183
<div class="header-right">
184184
<div class="theme-toggle-container theme-toggle-header">
@@ -202,7 +202,7 @@
202202
<img class="sidebar-logo" src="_static/rns_logo_512.png" alt="Logo"/>
203203
</div>
204204

205-
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.8 documentation</span>
205+
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.9 documentation</span>
206206

207207
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
208208
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -840,7 +840,7 @@ <h2>V</h2>
840840

841841
</aside>
842842
</div>
843-
</div><script src="_static/documentation_options.js?v=4d6f9085"></script>
843+
</div><script src="_static/documentation_options.js?v=e917149c"></script>
844844
<script src="_static/doctools.js?v=9bcbadda"></script>
845845
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
846846
<script src="_static/scripts/furo.js?v=46bd48cc"></script>

docs/manual/gettingstartedfast.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="prefetch" href="_static/rns_logo_512.png" as="image">
88

99
<!-- Generated with Sphinx 8.2.3 and Furo 2025.09.25.dev1 -->
10-
<title>Getting Started Fast - Reticulum Network Stack 1.2.8 documentation</title>
10+
<title>Getting Started Fast - Reticulum Network Stack 1.2.9 documentation</title>
1111
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
1212
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=580074bf" />
1313
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
@@ -180,7 +180,7 @@
180180
</label>
181181
</div>
182182
<div class="header-center">
183-
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.8 documentation</div></a>
183+
<a href="index.html"><div class="brand">Reticulum Network Stack 1.2.9 documentation</div></a>
184184
</div>
185185
<div class="header-right">
186186
<div class="theme-toggle-container theme-toggle-header">
@@ -204,7 +204,7 @@
204204
<img class="sidebar-logo" src="_static/rns_logo_512.png" alt="Logo"/>
205205
</div>
206206

207-
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.8 documentation</span>
207+
<span class="sidebar-brand-text">Reticulum Network Stack 1.2.9 documentation</span>
208208

209209
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
210210
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -968,7 +968,7 @@ <h2>Pure-Python Reticulum<a class="headerlink" href="#pure-python-reticulum" tit
968968

969969
</aside>
970970
</div>
971-
</div><script src="_static/documentation_options.js?v=4d6f9085"></script>
971+
</div><script src="_static/documentation_options.js?v=e917149c"></script>
972972
<script src="_static/doctools.js?v=9bcbadda"></script>
973973
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
974974
<script src="_static/scripts/furo.js?v=46bd48cc"></script>

0 commit comments

Comments
 (0)