From 5d4a656fa721415cf52966c03733b415830b6cc3 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 8 Jun 2025 20:50:30 +0100 Subject: [PATCH] Prepare v1.0.0-beta.26 release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Removed v1.0.0 from npm to continue beta testing - Updated version to 1.0.0-beta.26 - Added changelog entry for macOS requirement change 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- peekaboo-cli/Sources/peekaboo/Version.swift | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 827ef4b..812b1a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-beta.26] - 2025-01-08 + +### Changed +- **Lowered macOS requirement from 15.0 to 14.0 (Sonoma)** + - Analysis showed that all APIs used by Peekaboo are available in macOS 14.0 + - Key APIs: SCScreenshotManager.captureImage, configuration.shouldBeOpaque + - Makes Peekaboo available to more users who haven't upgraded to Sequoia + - Updated Package.swift, documentation, and availability annotations + +### Fixed +- Fixed TypeScript warning about undefined modelName in AI providers + ## [1.0.0] - 2025-01-08 ### 🎉 First Stable Release diff --git a/package.json b/package.json index c902b1d..1f1324b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@steipete/peekaboo-mcp", - "version": "1.0.0", + "version": "1.0.0-beta.26", "description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management", "type": "module", "main": "dist/index.js", diff --git a/peekaboo-cli/Sources/peekaboo/Version.swift b/peekaboo-cli/Sources/peekaboo/Version.swift index 7567d5b..7eac253 100644 --- a/peekaboo-cli/Sources/peekaboo/Version.swift +++ b/peekaboo-cli/Sources/peekaboo/Version.swift @@ -1,4 +1,4 @@ // This file is auto-generated by the build script. Do not edit manually. enum Version { - static let current = "1.0.0" + static let current = "1.0.0-beta.26" }