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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Nerdbank.GitVersioning package so the CLI's version math matches the
# assembly stamping. --allow-downgrade keeps this deterministic if the
# hosted runner ever preinstalls a newer nbgv than we pin.
run: dotnet tool install --global nbgv --version 3.10.85 --allow-downgrade
run: dotnet tool install --global nbgv --version 3.10.91 --allow-downgrade

- name: Derive version + channel from NBGV
id: meta
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Refreshed dependencies to their latest stable releases, including the Windows
App SDK (2.4.0), WebView2, the Windows SDK build tools, SQLite, the dependency
injection container, Spectre.Console and the test tooling.

## [1.1.0] - 2026-07-01

### Added
Expand Down
20 changes: 10 additions & 10 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<!-- Build-time, all projects -->
<ItemGroup>
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.10.85" />
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.10.91" />
</ItemGroup>

<!-- Core -->
Expand All @@ -19,35 +19,35 @@

<!-- Execution (command-execution feature; net10.0, no UI) -->
<ItemGroup>
<PackageVersion Include="Microsoft.Data.Sqlite" Version="10.0.9" />
<PackageVersion Include="Microsoft.Data.Sqlite" Version="10.0.11" />
<PackageVersion Include="Porta.Pty" Version="1.0.7" />
</ItemGroup>

<!-- App (WinUI 3 head) -->
<ItemGroup>
<PackageVersion Include="CommunityToolkit.WinUI.Controls.SettingsControls" Version="8.2.251219" />
<PackageVersion Include="H.NotifyIcon.WinUI" Version="2.4.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.9" />
<PackageVersion Include="Microsoft.Web.WebView2" Version="1.0.4022.49" />
<PackageVersion Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.28000.2270" />
<PackageVersion Include="Microsoft.WindowsAppSDK" Version="2.2.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.11" />
<PackageVersion Include="Microsoft.Web.WebView2" Version="1.0.4129.50" />
<PackageVersion Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.28000.2526" />
<PackageVersion Include="Microsoft.WindowsAppSDK" Version="2.4.0" />
<PackageVersion Include="Velopack" Version="1.2.0" />
</ItemGroup>

<!-- Importer tool (console). Spectre.Console.Cli trails Spectre.Console (no
0.56/0.57 Cli yet), so it stays at 0.55.0 — its latest stable — while
Spectre.Console moves to 0.57.1. Realign them when a newer Cli ships. -->
Spectre.Console moves to 0.57.2. Realign them when a newer Cli ships. -->
<ItemGroup>
<PackageVersion Include="Spectre.Console" Version="0.57.1" />
<PackageVersion Include="Spectre.Console" Version="0.57.2" />
<PackageVersion Include="Spectre.Console.Cli" Version="0.55.0" />
</ItemGroup>

<!-- Tests -->
<ItemGroup>
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
<PackageVersion Include="xunit.runner.visualstudio" Version="4.0.0" />
</ItemGroup>

</Project>
Loading