Skip to content

Commit 2309cc0

Browse files
committed
Release 0.6.1 (build 21)
1 parent bc29c91 commit 2309cc0

File tree

7 files changed

+19
-10
lines changed

7 files changed

+19
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.6.1 — 2025-12-05
3+
## 0.6.1 — 2025-12-052025-12-05
44
- Command detection now keeps multi-line command blocks intact when there are three or more standalone command-looking lines and no explicit joiners (\, |, &&, ||, ;); pipelines/continuations still flatten as before.
55
- Align app and CLI heuristics so both respect the above guard; CLI High/manual overrides still flatten.
66
- Added regression tests covering structured JSON copies and the pyenv init snippet to prevent unintended flattening in Normal mode.

Info.debug.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<key>CFBundlePackageType</key>
1414
<string>APPL</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>0.6.0</string>
16+
<string>0.6.1</string>
1717
<key>CFBundleVersion</key>
18-
<string>20</string>
18+
<string>21</string>
1919
<key>LSMinimumSystemVersion</key>
2020
<string>15.0</string>
2121
<key>LSMultipleInstancesProhibited</key>

Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.6.0</string>
18+
<string>0.6.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>20</string>
20+
<string>21</string>
2121
<key>LSMinimumSystemVersion</key>
2222
<string>15.0</string>
2323
<key>LSMultipleInstancesProhibited</key>

Scripts/package_app.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ cat > "$APP/Contents/Info.plist" <<PLIST
111111
<key>CFBundleIdentifier</key><string>${BUNDLE_ID}</string>
112112
<key>CFBundleExecutable</key><string>Trimmy</string>
113113
<key>CFBundlePackageType</key><string>APPL</string>
114-
<key>CFBundleShortVersionString</key><string>0.6.0</string>
115-
<key>CFBundleVersion</key><string>20</string>
114+
<key>CFBundleShortVersionString</key><string>0.6.1</string>
115+
<key>CFBundleVersion</key><string>21</string>
116116
<key>LSMinimumSystemVersion</key><string>15.0</string>
117117
<key>LSUIElement</key><true/>
118118
<key>CFBundleIconFile</key><string>Icon</string>

Scripts/sign-and-notarize.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ APP_IDENTITY="Developer ID Application: Peter Steinberger (Y5PE65HELJ)"
66
APP_BUNDLE="Trimmy.app"
77
ROOT=$(cd "$(dirname "$0")/.." && pwd)
88
source "$ROOT/version.env"
9-
ZIP_NAME="Trimmy-0.6.0.zip"
9+
ZIP_NAME="Trimmy-0.6.1.zip"
1010
DSYM_ZIP="Trimmy-${MARKETING_VERSION}.dSYM.zip"
1111

1212
if [[ -z "${APP_STORE_CONNECT_API_KEY_P8:-}" || -z "${APP_STORE_CONNECT_KEY_ID:-}" || -z "${APP_STORE_CONNECT_ISSUER_ID:-}" ]]; then

appcast.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
<?xml version="1.0" standalone="yes"?>
22
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0">
33
<channel>
4+
<item>
5+
<title>0.6.1</title>
6+
<pubDate>Fri, 05 Dec 2025 07:47:30 +0100</pubDate>
7+
<link>https://raw.githubusercontent.com/steipete/Trimmy/main/appcast.xml</link>
8+
<sparkle:version>21</sparkle:version>
9+
<sparkle:shortVersionString>0.6.1</sparkle:shortVersionString>
10+
<sparkle:minimumSystemVersion>15.0</sparkle:minimumSystemVersion>
11+
<enclosure url="https://github.com/steipete/Trimmy/releases/download/v0.6.1/Trimmy-0.6.1.zip" length="2549662" type="application/octet-stream" sparkle:edSignature="grE5rX7y7dC5WixNqaklKIrcoW7TI5e74EBswB4DPViidg3AXn3+z4O+30R4jgXkzVHumT9a54TQCUDc1Un2BA=="/>
12+
</item>
413
<item>
514
<title>0.6.0</title>
615
<pubDate>Thu, 04 Dec 2025 17:46:18 +0100</pubDate>

version.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
MARKETING_VERSION=0.6.0
2-
BUILD_NUMBER=20
1+
MARKETING_VERSION=0.6.1
2+
BUILD_NUMBER=21

0 commit comments

Comments
 (0)