Skip to content

Commit 9648570

Browse files
committed
docs: update 2026.3.11 release examples
1 parent ade7481 commit 9648570

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

apps/ios/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ Release behavior:
6464
- Beta release uses canonical `ai.openclaw.client*` bundle IDs through a temporary generated xcconfig in `apps/ios/build/BetaRelease.xcconfig`.
6565
- The beta flow does not modify `apps/ios/.local-signing.xcconfig` or `apps/ios/LocalSigning.xcconfig`.
6666
- Root `package.json.version` is the only version source for iOS.
67-
- A root version like `2026.3.10-beta.1` becomes:
68-
- `CFBundleShortVersionString = 2026.3.10`
69-
- `CFBundleVersion = next TestFlight build number for 2026.3.10`
67+
- A root version like `2026.3.11-beta.1` becomes:
68+
- `CFBundleShortVersionString = 2026.3.11`
69+
- `CFBundleVersion = next TestFlight build number for 2026.3.11`
7070

7171
Archive without upload:
7272

apps/ios/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def normalize_release_version(raw_value)
9999
version = raw_value.to_s.strip.sub(/\Av/, "")
100100
UI.user_error!("Missing root package.json version.") unless env_present?(version)
101101
unless version.match?(/\A\d+\.\d+\.\d+(?:[.-]?beta[.-]\d+)?\z/i)
102-
UI.user_error!("Invalid package.json version '#{raw_value}'. Expected 2026.3.10 or 2026.3.10-beta.1.")
102+
UI.user_error!("Invalid package.json version '#{raw_value}'. Expected 2026.3.11 or 2026.3.11-beta.1.")
103103
end
104104

105105
version

docs/platforms/mac/release.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,48 +39,48 @@ Notes:
3939
# Default is auto-derived from APP_VERSION when omitted.
4040
SKIP_NOTARIZE=1 \
4141
BUNDLE_ID=ai.openclaw.mac \
42-
APP_VERSION=2026.3.10 \
42+
APP_VERSION=2026.3.11 \
4343
BUILD_CONFIG=release \
4444
SIGN_IDENTITY="Developer ID Application: <Developer Name> (<TEAMID>)" \
4545
scripts/package-mac-dist.sh
4646

4747
# `package-mac-dist.sh` already creates the zip + DMG.
4848
# If you used `package-mac-app.sh` directly instead, create them manually:
4949
# If you want notarization/stapling in this step, use the NOTARIZE command below.
50-
ditto -c -k --sequesterRsrc --keepParent dist/OpenClaw.app dist/OpenClaw-2026.3.10.zip
50+
ditto -c -k --sequesterRsrc --keepParent dist/OpenClaw.app dist/OpenClaw-2026.3.11.zip
5151

5252
# Optional: build a styled DMG for humans (drag to /Applications)
53-
scripts/create-dmg.sh dist/OpenClaw.app dist/OpenClaw-2026.3.10.dmg
53+
scripts/create-dmg.sh dist/OpenClaw.app dist/OpenClaw-2026.3.11.dmg
5454

5555
# Recommended: build + notarize/staple zip + DMG
5656
# First, create a keychain profile once:
5757
# xcrun notarytool store-credentials "openclaw-notary" \
5858
# --apple-id "<apple-id>" --team-id "<team-id>" --password "<app-specific-password>"
5959
NOTARIZE=1 NOTARYTOOL_PROFILE=openclaw-notary \
6060
BUNDLE_ID=ai.openclaw.mac \
61-
APP_VERSION=2026.3.10 \
61+
APP_VERSION=2026.3.11 \
6262
BUILD_CONFIG=release \
6363
SIGN_IDENTITY="Developer ID Application: <Developer Name> (<TEAMID>)" \
6464
scripts/package-mac-dist.sh
6565

6666
# Optional: ship dSYM alongside the release
67-
ditto -c -k --keepParent apps/macos/.build/release/OpenClaw.app.dSYM dist/OpenClaw-2026.3.10.dSYM.zip
67+
ditto -c -k --keepParent apps/macos/.build/release/OpenClaw.app.dSYM dist/OpenClaw-2026.3.11.dSYM.zip
6868
```
6969

7070
## Appcast entry
7171

7272
Use the release note generator so Sparkle renders formatted HTML notes:
7373

7474
```bash
75-
SPARKLE_PRIVATE_KEY_FILE=/path/to/ed25519-private-key scripts/make_appcast.sh dist/OpenClaw-2026.3.10.zip https://raw.githubusercontent.com/openclaw/openclaw/main/appcast.xml
75+
SPARKLE_PRIVATE_KEY_FILE=/path/to/ed25519-private-key scripts/make_appcast.sh dist/OpenClaw-2026.3.11.zip https://raw.githubusercontent.com/openclaw/openclaw/main/appcast.xml
7676
```
7777

7878
Generates HTML release notes from `CHANGELOG.md` (via [`scripts/changelog-to-html.sh`](https://github.com/openclaw/openclaw/blob/main/scripts/changelog-to-html.sh)) and embeds them in the appcast entry.
7979
Commit the updated `appcast.xml` alongside the release assets (zip + dSYM) when publishing.
8080

8181
## Publish & verify
8282

83-
- Upload `OpenClaw-2026.3.10.zip` (and `OpenClaw-2026.3.10.dSYM.zip`) to the GitHub release for tag `v2026.3.10`.
83+
- Upload `OpenClaw-2026.3.11.zip` (and `OpenClaw-2026.3.11.dSYM.zip`) to the GitHub release for tag `v2026.3.11`.
8484
- Ensure the raw appcast URL matches the baked feed: `https://raw.githubusercontent.com/openclaw/openclaw/main/appcast.xml`.
8585
- Sanity checks:
8686
- `curl -I https://raw.githubusercontent.com/openclaw/openclaw/main/appcast.xml` returns 200.

0 commit comments

Comments
 (0)