# RNS Release Notes

_General · started by daylight-hub on Thu, May 21, 2026 11:10 PM_

---

## Original post

**daylight-hub** · Thu, May 21, 2026 11:10 PM

There have been a number of RNS updates released by Mark and I really miss the release notes on GitHub. Is there a way to see what changes are entailed in each update? I've been downloading from PyPI.

---

## Reply 1

**Yule Cat** · Fri, May 22, 2026 2:42 AM

That's a good question. Did you check for comments on his rngit page? I think his intention was that each commit would have a story.

---

## Reply 2

**Ahyrax** · Fri, May 22, 2026 6:40 AM

**daylight-hub** wrote:
> Is there a way to see what changes are entailed in each update?

We still have github *for now*. If that changes I assume we'd have to pull the repo and read the changelog that way
https://github.com/markqvist/Reticulum/blob/master/Changelog.md

---

## Reply 3

**aetherlab** · Fri, May 22, 2026 6:56 AM

GitHub is left behind already. Last version there is 1.2.5, latest release is 1.3.0, can be found on Aleph Nomadnet page. a8d24177d946de4f1f0a0fe1af9a1338:/page/releases.mu`g=reticulum|r=reticulum
![image.png](/storage/forum/7ouWtW9sdoMuc6K7CSCpj9VmVm5kspSIZkY13yAM.png)

---

## Reply 4

**Ahyrax** · Fri, May 22, 2026 8:21 AM

**aetherlab** wrote:
> GitHub is left behind already. 

Not exactly. Github no longer posts *releases*, but the files themselves as well as all the code are still updated. Including Changelog.md, which I linked and which *still* has all the updates listed.
Having a NomadNet source as well is nice to have though.

![image.png](/storage/forum/5YvVVn8HP3fw5PxYaTlErfdO1Bzoy3I0yiSR5zQ2.png)

---

## Reply 5

**joakim** · Fri, May 22, 2026 8:28 AM

I'd say it's the other way around. Aleph Git is where it's at, the GitHub repo is nice to have for people who for some reason haven't gotten themselves onto NomadNet yet :)

I only use the GitHub repo for [its commit feed](https://github.com/markqvist/reticulum/commits/master.atom).

---

## Reply 6

**Mark** · Fri, May 22, 2026 9:04 AM

List releases for a repository:
`rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum list`

View latest release with notes and information:
`rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum view latest`

Fetch latest installation `.whl`:
`rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch "latest:rns-*.whl"`

Single-command update check, fetch and install:
`rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch "latest:rns-*.whl" && pip install ./rns-*.whl`

Update using the manifest instead of URL:
`rngit release ./rns_1.3.0.rsm fetch "latest:rns-*.whl" && pip install ./rns-*.whl`

---

## Reply 7

**Mark** · Fri, May 22, 2026 9:12 AM

And as Joakim said, all the releases and release notes are browsable on Aleph as well. They will continue to be uploaded to `pip` as well, for the foreseeable future at least. But what I *really* don't like about `pip` is that there's no way to verify releases or check signatures. It's all basically "trust me bro, we didn't mess with the files".

I *may* occasionally push the code to github, but I'm considering that as a non-live mirror, so don't expect updates there to be timely or come at all. If you want to know the latest state, the Aleph node is where it's at :)

If you want to always have an in-sync copy, you can set up `rngit` to mirror Aleph, every 24 hours for example. You will always have a local up-to-date mirror with all the latest commits.

---

## Reply 8

**Mark** · Fri, May 22, 2026 9:16 AM

Also, while `Changelog.md` does update on github if/when I do a push to there, I didn't do that at all between 1.2.5 and 1.3.0 I think, so don't expect that to be a live source in any capapcity. If you want live release information, the `rngit release list` or `rngit release view` commands are the way to go.

---

## Reply 9

**Mark** · Fri, May 22, 2026 9:19 AM

There's extensive, and decently well-structure documentation on the entire `rngit` system in the manual now, around 30 pages in total. Should provide all the information on how to use the system. Everything is designed to be composable and can be hooked into any kind of automated workflow.

---

## Reply 10

**joakim** · Fri, May 22, 2026 10:45 AM

I made a little shell function for installing/updating Python packages with `rngit`.

```
rngit-pip-install() {
  local repo=$1
  local wheel=${2:-${repo##*/}-*.whl}
  rngit release rns://$repo fetch "latest:$wheel" && pip install ./$wheel

  # Uncomment to delete all .whl and .rsm files in the working directory:
  #rm ./*.whl ./*.rsm
}
```

I then have these aliases for updating RNS and NomadNet:

```
alias update-rns='rngit-pip-install 7649a50d84610232d1416b41d2896aff/reticulum/reticulum rns-*.whl'
alias update-nomadnet='rngit-pip-install 7649a50d84610232d1416b41d2896aff/reticulum/nomadnet'
```

A nice little stopgap until we have a working `rnpgk` :)

Edit: Updated it to support different wheel names, renamed to `rngit-pip-install`. Requires RNS `>=1.3.0`.  
Edit 2: If the wildcard path matches more than one `.whl` file, `pip` will install all of them (`pipx` will fail if you use that). Either clean up after yourself or uncomment the `rm` line if you're OK with it.

---

## Reply 11

**Mark** · Fri, May 22, 2026 11:25 AM

That's neat Joakim! Thank's for sharing :)

---

## Reply 12

**daylight-hub** · Sat, May 23, 2026 1:32 AM

**Mark** wrote:
> List releases for a repository:
> `rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum list`
> 
> View latest release with notes and information:
> `rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum view latest`
> 
> Fetch latest installation `.whl`:
> `rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch &quot;latest:rns-*.whl&quot;`
> 
> Single-command update check, fetch and install:
> `rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch &quot;latest:rns-*.whl&quot; &amp;&amp; pip install ./rns-*.whl`
> 
> Update using the manifest instead of URL:
> `rngit release ./rns_1.3.0.rsm fetch &quot;latest:rns-*.whl&quot; &amp;&amp; pip install ./rns-*.whl`


Thank you Mark. Can you explain the necessary prerequisites to using these commands. I've tried running them in the command line, but to not success. All I have is RNS and LXMF. Do I need Nomadnet? Should I first connect to a specific backbone TCP connection? Here's what I'm running into on my server:

`lcs@LCS:~$ rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum list
[2026-05-23 01:29:48] [Error]    The "git" command is not available. Aborting server startup.`

`lcs@LCS:~$ rnsd --version
rnsd 1.2.9`

---

## Reply 13

**Yule Cat** · Sat, May 23, 2026 2:44 AM

Looks like you need to install `git`, Daylight. `rngit` still uses `git` to do everything, it just allows it to interface with `rns`.

---

## Reply 14

**Mark** · Sat, May 23, 2026 7:43 AM

Yes, in 1.2.9 it was a hard prerequisite to have `git` installed. But for many of the subcommands, `git` is actually not necessary, so in version 1.3.0 I changed the logic, so it only checks the `git` requirement if actually needed. From 1.3.0 onwards, you can fetch releases, et cetera, without having `git` installed.

You will of course still need `git` for hosting repositories and such.

---

## Reply 15

**daylight-hub** · Sat, May 23, 2026 6:05 PM

**Mark** wrote:
> Yes, in 1.2.9 it was a hard prerequisite to have `git` installed. But for many of the subcommands, `git` is actually not necessary, so in version 1.3.0 I changed the logic, so it only checks the `git` requirement if actually needed. From 1.3.0 onwards, you can fetch releases, et cetera, without having `git` installed.
> 
> You will of course still need `git` for hosting repositories and such.

okay, thank you for your help!

---

## Reply 16

**Janus** · Thu, May 28, 2026 4:09 PM

Hey all, from someone intermittently following RNS development and expansion, it might be good to explicitly point people who go to the Github page to Aleph. I just happened to stumble across this thread here, otherwise I'd have no idea where to actually find the latest and greatest.

---

## Reply 17

**joakim** · Thu, May 28, 2026 4:39 PM

Could be a good idea to add a notice at the top of future GitHub releases, pointing people to PyPi for installing RNS and Aleph Git for the latest source.

---
