diff options
Diffstat (limited to 'packages/meshbay-common/src/meshbay_common/__init__.py')
| -rw-r--r-- | packages/meshbay-common/src/meshbay_common/__init__.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/meshbay-common/src/meshbay_common/__init__.py b/packages/meshbay-common/src/meshbay_common/__init__.py index 938f5d4..53c1058 100644 --- a/packages/meshbay-common/src/meshbay_common/__init__.py +++ b/packages/meshbay-common/src/meshbay_common/__init__.py @@ -1,6 +1,6 @@ """MeshBay common — shared crypto primitives and protocol types.""" -__version__ = "0.6.0" +__version__ = "0.7.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. @@ -18,5 +18,11 @@ __version__ = "0.6.0" # and `tmdb_search_req`/`tmdb_search_resp` + `tmdb_override`/`tmdb_override_ack` # (an operator correcting a wrong automatic TMDB match, found live against a # real show fragmented across TMDB entries per season). All additive. -MNP_VERSION = "0.6" +# 0.7: added `tmdb_enabled`/`tmdb_enabled_ack` — whether TMDB is used moved +# from a node-wide setting to per-group (an operator running a real media +# library alongside test/demo groups on one node wants outbound TMDB traffic +# for one, not all of them). `tmdb_config`/`tmdb_config_ack` keep their name +# but now only cover the token/language, which stay node-wide. Additive: an +# older client simply never sends/handles the new pair. +MNP_VERSION = "0.7" MHP_VERSION = "0.1" |