Prepare v1.0.0-beta.26 release

- 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 <noreply@anthropic.com>
This commit is contained in:
Peter Steinberger 2025-06-08 20:50:30 +01:00
parent 606290ec79
commit 5d4a656fa7
3 changed files with 14 additions and 2 deletions

View file

@ -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

View file

@ -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",

View file

@ -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"
}