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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Versioning.

## [Unreleased]

## [0.14.1] - 2026-08-18

### Changed

- Add Chocolatey ownership handling, including package-manager update
delegation and an ambiguous-ownership fail-safe.
- Add machine-owned Chocolatey packaging for Windows x64 and ARM64, with safe
rejection of unsupported x86 systems.

### Fixed

- Make Chocolatey SHA-256 verification compatible with its native PowerShell
host.

## [0.14.0] - 2026-08-18

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dev-nav"
version = "0.14.0"
version = "0.14.1"
edition = "2024"
rust-version = "1.97"
description = "A fast, keyboard-first Windows workspace navigator for PowerShell 7"
Expand Down
7 changes: 5 additions & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ committed deliverable.
- [ ] Revisit OpenSSF Scorecard findings that require organizational decisions
(branch protection coverage, review and maintenance signals) rather than
code changes.
- [ ] Validate a real cross-version Scoop upgrade on a future release and
- [x] Validate a real cross-version Scoop upgrade on a future release and
automate WinGet submissions once a catalog installation is verified.

## Distribution status
Expand All @@ -59,7 +59,10 @@ committed deliverable.
- [ ] Microsoft acceptance and public WinGet catalog propagation.
- [x] Validate fresh Scoop install, package-manager ownership, update behavior,
and uninstall on a clean GitHub-hosted Windows runner.
- [ ] Validate a real cross-version Scoop upgrade on a future release.
- [x] Validate a real cross-version Scoop upgrade from 0.13.0 to 0.14.0.
- [x] Complete local Chocolatey machine-owned packaging readiness for x64 and
ARM64; Community publication remains pending a future release and verifier
exemption.
- [ ] Automate future WinGet submissions after a real catalog installation has
been verified.

Expand Down
2 changes: 1 addition & 1 deletion packaging/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jacoboptimiza/devnav",
"version": "0.14.0",
"version": "0.14.1",
"description": "Native high-performance workspace navigator for PowerShell 7 on Windows",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packaging/scoop/devnav.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.14.0",
"version": "0.14.1",
"description": "Native high-performance workspace navigator for PowerShell 7 on Windows.",
"homepage": "https://github.com/JacobOptimiza/dev-nav",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion powershell/DevNav.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'DevNav.psm1'
ModuleVersion = '0.14.0'
ModuleVersion = '0.14.1'
GUID = '5e631432-751b-46ce-bfa6-8a0051bc9bd1'
Author = 'Jacob Optimiza'
CompanyName = 'Jacob Optimiza'
Expand Down