From 31291852f98122aa6a845fe793326c9dd5ed672a Mon Sep 17 00:00:00 2001 From: torlando-tech Date: Mon, 10 Nov 2025 15:40:23 -0500 Subject: [PATCH] chore: Bump version to 0.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version to test fixed release workflow with atomic release creation. Changes: - Update pyproject.toml version from 0.1.0 to 0.1.1 - Add CHANGELOG entry documenting release workflow fix This allows testing the corrected workflow (gh release create) without being blocked by v0.1.0 tag recreation restrictions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dc7343..806031b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to the BLE-Reticulum project will be documented in this file The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] - 2025-11-10 + +### Fixed +- **Release workflow**: Use `gh release create` for atomic release creation to prevent asset upload failures with immutable releases. Previously, `softprops/action-gh-release` created releases and uploaded assets in separate operations, which failed when repository rules made releases immutable immediately. + ## [0.1.0] - 2025-11-10 ### Added diff --git a/pyproject.toml b/pyproject.toml index 7949d48..78e8337 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ble-reticulum" -version = "0.1.0" +version = "0.1.1" description = "Bluetooth Low Energy (BLE) interface for Reticulum Network Stack" readme = "README.md" requires-python = ">=3.8"