diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-23 15:15:47 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-23 15:15:47 +0200 |
| commit | 012ba5b0cb8c556ce773423ca38d5184b74659ac (patch) | |
| tree | cdf8fd355f6956912bb131e69f30ab263581fae4 /packages/meshbay-common | |
| parent | 9f02ee2c09652abf1308bdfa4a3eec4e9ca9ac83 (diff) | |
| download | meshbay-012ba5b0cb8c556ce773423ca38d5184b74659ac.tar.gz | |
chore: release 0.6.00.6
The group UI's applications split, and the two missing-import bugs it
surfaced and fixed along the way.
MNP goes to 0.4: apps_enabled/apps_enabled_ack, and enabled_apps on the
handshake ack, for the group-applications registry. Additive — a node that
predates it is never sent the op, and a client that predates it never looks
for the field.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016SF6RKNBKg9qejmoMJ9ybA
Diffstat (limited to 'packages/meshbay-common')
| -rw-r--r-- | packages/meshbay-common/pyproject.toml | 2 | ||||
| -rw-r--r-- | packages/meshbay-common/src/meshbay_common/__init__.py | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/packages/meshbay-common/pyproject.toml b/packages/meshbay-common/pyproject.toml index 62a9d8b..81aac61 100644 --- a/packages/meshbay-common/pyproject.toml +++ b/packages/meshbay-common/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "meshbay-common" -version = "0.5.0" +version = "0.6.0" description = "MeshBay shared cryptographic primitives and protocol types" requires-python = ">=3.12" dependencies = [ diff --git a/packages/meshbay-common/src/meshbay_common/__init__.py b/packages/meshbay-common/src/meshbay_common/__init__.py index 814c606..a622623 100644 --- a/packages/meshbay-common/src/meshbay_common/__init__.py +++ b/packages/meshbay-common/src/meshbay_common/__init__.py @@ -1,8 +1,12 @@ """MeshBay common — shared crypto primitives and protocol types.""" -__version__ = "0.5.0" +__version__ = "0.6.0" # 0.2: added PING/PONG, and `before`/`has_more` on chat history. Both are # additive — an 0.1 peer sends no `before` and gets the newest page, which is # what it wanted — so this is a MINOR bump, not a MAJOR one. -MNP_VERSION = "0.3" +# 0.4: added `apps_enabled`/`apps_enabled_ack`, and `enabled_apps` on the +# handshake ack, for the group-applications registry. Additive — a node that +# predates it is never sent the op, and a client that predates it never looks +# for the field — so this is a MINOR bump too. +MNP_VERSION = "0.4" MHP_VERSION = "0.1" |