From 927db4aea05990cb70793148326777ac7d412a73 Mon Sep 17 00:00:00 2001 From: Phil Skentelbery Date: Wed, 10 Dec 2025 08:39:54 -0700 Subject: [PATCH] release: Bump version to 1.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Promote v1.2.0-rc.2 to stable v1.2.0 release - Merged rc.1 and rc.2 changelog entries - Updated version in starpunk/__init__.py - All features tested in production 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 17 +++++++---------- starpunk/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca633d0..c1c77bd 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.2.0-rc.2] - 2025-12-09 +## [1.2.0] - 2025-12-09 ### Added - **Feed Media Enhancement** - Media RSS and JSON Feed image support for improved feed reader compatibility @@ -20,15 +20,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Both feed formats maintain existing HTML embedding for universal reader support - Provides enhanced display in modern feed readers (Feedly, Inoreader, NetNewsWire) -### Fixed -- **Media Display on Homepage** - Images now display correctly on homepage, not just individual note pages -- **Responsive Image Sizing** - Images constrained to container width with proper CSS -- **Caption Display** - Captions now used as alt text only, not displayed as visible text -- **Logging Correlation ID** - Fixed crash in non-request contexts (app init, memory monitor) - -## [1.2.0-rc.1] - 2025-11-28 - -### Added - **Custom Slug Input Field** - Web UI now supports custom slugs (v1.2.0 Phase 1) - Added optional custom slug field to note creation form - Slugs are read-only after creation to preserve permalinks @@ -72,6 +63,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Multiple u-photo properties in Microformats2 markup - Media files cached immutably (1 year) for performance +### Fixed +- **Media Display on Homepage** - Images now display correctly on homepage, not just individual note pages +- **Responsive Image Sizing** - Images constrained to container width with proper CSS +- **Caption Display** - Captions now used as alt text only, not displayed as visible text +- **Logging Correlation ID** - Fixed crash in non-request contexts (app init, memory monitor) + ## [1.1.2] - 2025-11-28 ### Fixed diff --git a/starpunk/__init__.py b/starpunk/__init__.py index 2ee84e7..2ea04b8 100644 --- a/starpunk/__init__.py +++ b/starpunk/__init__.py @@ -325,5 +325,5 @@ def create_app(config=None): # Package version (Semantic Versioning 2.0.0) # See docs/standards/versioning-strategy.md for details -__version__ = "1.2.0-rc.2" -__version_info__ = (1, 2, 0, "dev") +__version__ = "1.2.0" +__version_info__ = (1, 2, 0)