From 61d2f46464bc16b5aa32b7569884fe29159da009 Mon Sep 17 00:00:00 2001 From: hit9 Date: Wed, 27 Aug 2025 23:28:48 +0800 Subject: [PATCH 1/2] bump v1.2.1 --- changes.rst | 4 ++-- compiler/bitproto/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changes.rst b/changes.rst index 02e6f49..323d631 100644 --- a/changes.rst +++ b/changes.rst @@ -1,7 +1,7 @@ .. currentmodule:: bitproto -Version 1.2.1 (Pending) ------------------------ +Version 1.2.1 +------------- .. _version-1.2.1: diff --git a/compiler/bitproto/__init__.py b/compiler/bitproto/__init__.py index 611bb4a..a2714de 100644 --- a/compiler/bitproto/__init__.py +++ b/compiler/bitproto/__init__.py @@ -8,5 +8,5 @@ """ -__version__ = "1.2.0" +__version__ = "1.2.1" __description__ = "bit level data interchange format." From fe64ef17a865f197245440ec96931ffbcfc9def8 Mon Sep 17 00:00:00 2001 From: hit9 Date: Wed, 27 Aug 2025 23:32:17 +0800 Subject: [PATCH 2/2] ci: add go1.25, py3.13, remove: go1.19, py3.10 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7628f32..472644f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,8 @@ jobs: strategy: matrix: os: [ubuntu-22.04] - python: [3.7, 3.8, "3.10", "3.11"] - go: ["1.19", "1.16"] + python: [3.7, 3.8, "3.11", "3.13"] + go: ["1.25", "1.16"] runs-on: ${{ matrix.os }}