From e8f905f2d8119ad4d13f6041c2e9bf97b635cddb Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Tue, 16 Jun 2026 13:57:50 -0400 Subject: [PATCH] bump to v0.1.0 for first PyPI release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 7 phases shipped: ETF codec, EPMD client, v6 handshake (MD5 cookie), data channel (4-byte framing), gen_call protocol, TLS dist (inet_tls_dist), unfeed integration. Maps + cross-stack validation through wallet.unsandbox.com's test pyramid. 122 tests across unit / handshake / channel / node / tls / etf-maps. Tag this commit with vX.Y.Z and push the tag — CI's pypi-twine stage takes over from there. --- erldistpy/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erldistpy/__init__.py b/erldistpy/__init__.py index 2439f0d..aae15f2 100644 --- a/erldistpy/__init__.py +++ b/erldistpy/__init__.py @@ -1,6 +1,6 @@ """erldistpy — native Python client for our Erlang distribution protocol.""" -__version__ = "0.0.1" +__version__ = "0.1.0" from erldistpy.channel import Channel, ChannelError, IncomingMessage from erldistpy.epmd import EpmdError, EpmdInfo, lookup diff --git a/pyproject.toml b/pyproject.toml index 89c771e..b26f500 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "erldistpy" -version = "0.0.1" +version = "0.1.0" description = "Native Python client for Erlang distribution protocol — EPMD + v6 handshake + gen_server call(), no asyncio." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10"