Skip to content
Open
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
5 changes: 0 additions & 5 deletions .changeset/doctor-flags-shadowed-install.md

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.4.2
### Patch Changes



- [`ef2adc7`](https://github.com/quantizor/devctl/commit/ef2adc76f3e7a8d270bbad3b3899c0978950440b) - `devctl doctor` now catches a second devctl copy shadowing your Homebrew install, the failure where `brew upgrade` changes one copy while a bare `devctl` (or the background daemon) keeps running an older one. It reports when a manual `~/.local/bin` install coexists with the Homebrew cask (whichever `~/.local/bin` or brew's bin comes first on your PATH is what actually runs), and when an `/Applications/devctl.app` that Homebrew did not place is still present. Each finding names the exact cleanup command. Like doctor's other environment findings, it only reports, and only fires when a Homebrew install is present, so a plain `make install` is never flagged.

## 1.4.1
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion Sources/DevCtlKit/Model/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.1"
public static let version = "1.4.2"
}

/** Lifecycle phase of a supervised server. `failed` means the spawn itself never
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devctl",
"version": "1.4.1",
"version": "1.4.2",
"private": true,
"description": "Version and changelog source of truth for GitHub releases (Swift product; not published to npm).",
"repository": {
Expand Down
Loading