From 83739ec2c6c9e36b06231459050eadd587111fd5 Mon Sep 17 00:00:00 2001 From: Phil Skentelbery Date: Fri, 28 Nov 2025 09:59:42 -0700 Subject: [PATCH] release: Promote v1.1.2-rc.2 to stable v1.1.2 "Syndicate" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Promoting release candidate to stable production release. v1.1.2 "Syndicate" - Enhanced Content Distribution This release delivers comprehensive metrics instrumentation and multi-format feed support (RSS, ATOM, JSON Feed) with content negotiation, caching, and statistics dashboard. No changes from v1.1.2-rc.2 - both production issues verified fixed. Version: 1.1.2 (stable) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 2 +- starpunk/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf502b5..9b7f2b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.1.2-rc.2] - 2025-11-28 +## [1.1.2] - 2025-11-28 ### Fixed - **CRITICAL**: Static files now load correctly - fixed HTTP middleware streaming response handling diff --git a/starpunk/__init__.py b/starpunk/__init__.py index 8af9bd9..97214d5 100644 --- a/starpunk/__init__.py +++ b/starpunk/__init__.py @@ -298,5 +298,5 @@ def create_app(config=None): # Package version (Semantic Versioning 2.0.0) # See docs/standards/versioning-strategy.md for details -__version__ = "1.1.2-rc.2" +__version__ = "1.1.2" __version_info__ = (1, 1, 2)