Skip to content

Commit 3d2f657

Browse files
committed
chore: prepare 2.2.0 release
1 parent f47d6ef commit 3d2f657

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.2.0] - 2026-05-07
11+
1012
### Added
1113

1214
- OpenAPI coverage tooling via `asc-mcp openapi-coverage`, using Apple's official App Store Connect OpenAPI JSON without loading ASC credentials or starting the MCP server.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
```bash
5353
# 1. Install via Mint
5454
brew install mint
55-
mint install zelentsov-dev/asc-mcp@2.1.0
55+
mint install zelentsov-dev/asc-mcp@v2.2.0
5656

5757
# 2. Add to Claude Code with env vars (simplest setup)
5858
claude mcp add asc-mcp \
@@ -84,7 +84,7 @@ Or use a JSON config file — see [Configuration](#configuration) below.
8484
brew install mint
8585

8686
# Install asc-mcp from GitHub
87-
mint install zelentsov-dev/asc-mcp@2.1.0
87+
mint install zelentsov-dev/asc-mcp@v2.2.0
8888

8989
# Register in Claude Code
9090
claude mcp add asc-mcp -- ~/.mint/bin/asc-mcp
@@ -95,13 +95,13 @@ To install a specific branch or tag:
9595
```bash
9696
mint install zelentsov-dev/asc-mcp@main # main branch
9797
mint install zelentsov-dev/asc-mcp@develop # develop branch
98-
mint install zelentsov-dev/asc-mcp@2.1.0 # specific tag
98+
mint install zelentsov-dev/asc-mcp@v2.2.0 # specific tag
9999
```
100100

101101
To update to the latest version:
102102

103103
```bash
104-
mint install zelentsov-dev/asc-mcp@2.1.0 --force
104+
mint install zelentsov-dev/asc-mcp@v2.2.0 --force
105105
```
106106

107107
### Option B: Build from Source
@@ -1021,10 +1021,10 @@ Includes App Store review attachment upload, get, delete, and list tools.
10211021
### Complete Release Workflow
10221022
10231023
```
1024-
You: "Release version 2.1.0 of my app with build 456"
1024+
You: "Release version 2.2.0 of my app with build 456"
10251025
10261026
Claude will:
1027-
1. app_versions_create(app_id, platform: "IOS", version_string: "2.1.0")
1027+
1. app_versions_create(app_id, platform: "IOS", version_string: "2.2.0")
10281028
2. app_versions_attach_build(version_id, build_id)
10291029
3. app_versions_set_review_details(version_id, contact_email: "...")
10301030
4. app_versions_submit_for_review(version_id)

SECURITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
| Version | Supported |
66
|---------|-----------|
7+
| 2.2.x | Yes |
78
| 2.1.x | Yes |
89
| 2.0.x | Yes |
910
| 1.x | Security fixes only |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Foundation
22

33
enum ServerVersion {
4-
static let current = "2.1.0"
4+
static let current = "2.2.0"
55
}

0 commit comments

Comments
 (0)