diff --git a/.changeset/dmg-smappservice-rebind.md b/.changeset/dmg-smappservice-rebind.md deleted file mode 100644 index ce34a03..0000000 --- a/.changeset/dmg-smappservice-rebind.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"devctl": minor ---- - -Ship a DMG installer that places the app in Applications and registers the Login Items agent, keep resource locks across a daemon crash so paused servers resume, and rebind the helper after ad-hoc upgrades so the daemon returns in seconds instead of stalling on a codesign throttle. diff --git a/CHANGELOG.md b/CHANGELOG.md index a8e778a..16d58c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.3.0 +### Minor Changes + + + +- [#8](https://github.com/quantizor/devctl/pull/8) [`e503e93`](https://github.com/quantizor/devctl/commit/e503e937766af58499f2ff108da04142b28a8ff1) - Ship a DMG installer that places the app in Applications and registers the Login Items agent, keep resource locks across a daemon crash so paused servers resume, and rebind the helper after ad-hoc upgrades so the daemon returns in seconds instead of stalling on a codesign throttle. + All notable changes to this project are documented here. Releases are tagged `vX.Y.Z` on GitHub (same scheme Changesets uses for this root package). diff --git a/Sources/DevCtlKit/Model/Models.swift b/Sources/DevCtlKit/Model/Models.swift index b576d2a..41b52a7 100644 --- a/Sources/DevCtlKit/Model/Models.swift +++ b/Sources/DevCtlKit/Model/Models.swift @@ -4,7 +4,7 @@ import Foundation public enum DevCtlVersion { /** Wire protocol major version; clients abort on mismatch with `version-mismatch`. */ public static let proto = 1 - public static let version = "1.2.0" + public static let version = "1.3.0" } /** Lifecycle phase of a supervised server. `failed` means the spawn itself never diff --git a/package-lock.json b/package-lock.json index a505881..00b8964 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "devctl", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "devctl", - "version": "1.2.0", + "version": "1.3.0", "license": "MIT", "devDependencies": { "@changesets/changelog-github": "^0.7.0", diff --git a/package.json b/package.json index ffb2a53..5dd5854 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "devctl", - "version": "1.2.0", + "version": "1.3.0", "private": true, "description": "Version and changelog source of truth for GitHub releases (Swift product; not published to npm).", "repository": {