Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Changelog

## Unreleased
## 0.3.7 - 2026-09-13

**Highlights:** `--delete --rename` can no longer silently delete a list, and list mutations are validated before Reminders is touched.

- Update CI and Swift CodeQL builds to Xcode 26.6 on macOS 26 while retaining the macOS 14 deployment target.
- Reject conflicting list mutations and missing targets before accessing Reminders, preventing combinations such as `--delete --rename` from silently deleting a list.
- Honor the supplied calendar's time zone when RemindCore parses local dates, while retaining explicit ISO 8601 offsets.
- Respect `--` when interpreting help/version flags and allow the CLI executable to be renamed without breaking command resolution.
- Reject infinite geofence radii before geocoding or saving a reminder.
- Run developer checks once with the existing 90% coverage gate, pin CI to Swift 6.2 and current Node/pnpm tooling, and execute universal CLI smoke checks in CI.
- Reject out-of-range numeric reminder indexes before converting them to array offsets, preventing an arithmetic-overflow crash for the minimum integer.
- Honor the supplied calendar's time zone when RemindCore parses local dates, while retaining explicit ISO 8601 offsets.
- Update CI and Swift CodeQL builds to Xcode 26.6 on macOS 26 while retaining the macOS 14 deployment target.
- Run developer checks once with the existing 90% coverage gate, pin CI to Swift 6.2 and current Node/pnpm tooling, and execute universal CLI smoke checks in CI.

## 0.3.6 - 2026-09-07

Expand Down
4 changes: 2 additions & 2 deletions Sources/remindctl/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.3.6</string>
<string>0.3.7</string>
<key>CFBundleVersion</key>
<string>0.3.6</string>
<string>0.3.7</string>
<key>NSRemindersUsageDescription</key>
<string>Manage your reminders from the terminal.</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Sources/remindctl/Version.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by scripts/generate-version.sh. Do not edit.
enum RemindctlVersion {
static let current = "0.3.6"
static let current = "0.3.7"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remindctl",
"version": "0.3.6",
"version": "0.3.7",
"private": true,
"scripts": {
"version:sync": "scripts/generate-version.sh",
Expand Down
2 changes: 1 addition & 1 deletion version.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MARKETING_VERSION=0.3.6
MARKETING_VERSION=0.3.7