From 194f150d3be0d971ae267d5efe8f1c8c44af5c51 Mon Sep 17 00:00:00 2001 From: Rowan Date: Sun, 13 Sep 2026 20:15:03 -0400 Subject: [PATCH] release: netcode.cs 1.1.0 The first release since v1.0.0, carrying the connect-token lifecycle fix (netcode.cs#6, GHSA-v29p-3vj4-vg4f) and the create-time callback refusals (netcode.cs#7, mirroring netcode#191). Public API is additive only and nothing on the wire changes. Version sites: - src/Netcode.csproj gains 1.1.0. The property did not exist before, so the assembly reported 1.0.0.0 by the SDK default and would have kept reporting it forever. It is this port's own number: it does not track the C reference's numbering, and "NETCODE 1.02" in Protocol.VersionInfo is the wire protocol version and does not move. - README.md's status line: v1.0.0 -> v1.1.0, and it now names the C reference release this port is tested against (netcode 1.4.8). notes/port-map.md already reads "C reference, version 1.4.8" (fc235d2), and this port exposes no C-version constant of its own, so there is no VersionFull-style site to bump. Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 2 +- src/Netcode.csproj | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a50054..5124e12 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ If this library helps you, please support it: **[Become a supporter](https://www.patreon.com/MasBandwidth/membership)** -**Status: released** — v1.0.0, the first release. Wire compatibility with the C reference is proven in CI on every push (the "C wire compatibility" gate). +**Status: released** — v1.1.0, tested against the C reference at netcode 1.4.8. Wire compatibility with the C reference is proven in CI on every push (the "C wire compatibility" gate). C# port of [netcode](https://github.com/mas-bandwidth/netcode), a simple protocol for creating secure client/server connections over UDP (protocol diff --git a/src/Netcode.csproj b/src/Netcode.csproj index fcc8b10..fe7222b 100644 --- a/src/Netcode.csproj +++ b/src/Netcode.csproj @@ -5,6 +5,11 @@ library; net10.0 is the current SDK. (family precedent: serialize.cs) --> net8.0;net10.0 Netcode + + 1.1.0 enable disable true