chore: Bump version to 1.0.0-beta.20

🤖 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 07:27:43 +01:00
parent 5e3d4d3c76
commit c3e03a730b
4 changed files with 7 additions and 6 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.0.0-beta.20] - 2025-06-08
### Added ### Added
- **Window count display optimization**: Single-window apps no longer show "Windows: 1" in list output ([#6](https://github.com/steipete/Peekaboo/pull/6)) - **Window count display optimization**: Single-window apps no longer show "Windows: 1" in list output ([#6](https://github.com/steipete/Peekaboo/pull/6))
- Reduces visual clutter for the common case of apps with only one window - Reduces visual clutter for the common case of apps with only one window

7
package-lock.json generated
View file

@ -1,17 +1,16 @@
{ {
"name": "@steipete/peekaboo-mcp", "name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.19", "version": "1.0.0-beta.20",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@steipete/peekaboo-mcp", "name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.19", "version": "1.0.0-beta.20",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"os": [ "os": [
"darwin", "darwin"
"linux"
], ],
"dependencies": { "dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0", "@modelcontextprotocol/sdk": "^1.12.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "@steipete/peekaboo-mcp", "name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.19", "version": "1.0.0-beta.20",
"description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management", "description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",

View file

@ -1,4 +1,4 @@
// This file is auto-generated by the build script. Do not edit manually. // This file is auto-generated by the build script. Do not edit manually.
enum Version { enum Version {
static let current = "1.0.0-beta.19" static let current = "1.0.0-beta.20"
} }