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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [0.3.0] — 2026-07-24

### Changed

- **Runtime-aligned Microsoft platform dependencies are now floored per target framework.** In a library a `PackageReference` version is a minimum floor NuGet forces on every downstream consumer (lowest-applicable-version resolution). Since 0.2.0 multi-targeted `net8.0` alongside `net10.0` but floored `Microsoft.Extensions.DependencyInjection.Abstractions` and `Microsoft.Extensions.Http` at a single `10.0.x`, net8 consumers were dragged off their own `8.0.x` LTS servicing line. These two packages are now split into per-TFM `ItemGroup`s: `net8.0` floors at the latest stable `8.0.x` (`DependencyInjection.Abstractions` 8.0.2, `Http` 8.0.1), `net10.0` at the latest stable `10.0.x` (both 10.0.10). The `net8.0` dependency group in the `.nupkg` no longer pins net8 apps to a .NET 10 servicing line.
- Bumped `Spectre.Console` (and the test-only `Spectre.Console.Testing`) 0.56.0 → 0.57.2. `Spectre.Console.Cli` stays at 0.55.0 (still its latest stable). These are independently-versioned third-party packages, so they remain a single common `PackageReference` at the built/tested version rather than being split per-TFM.

---

## [0.2.0] — 2026-06-20

### Changed
Expand Down Expand Up @@ -166,6 +175,10 @@ Initial commit. Never published to nuget.org — superseded by 0.1.1 before the
- Full XML documentation on the public surface, `TreatWarningsAsErrors=true`, `AnalysisLevel=latest`.
- SourceLink, deterministic builds, published symbol packages.

[0.3.0]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.3.0
[0.2.0]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.2.0
[0.1.10]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.1.10
[0.1.9]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.1.9
[0.1.8]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.1.8
[0.1.7]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.1.7
[0.1.6]: https://github.com/StuartMeeks/NextIteration.SpectreConsole.SelfUpdate/releases/tag/v0.1.6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<PropertyGroup>
<PackageId>NextIteration.SpectreConsole.SelfUpdate</PackageId>
<Version>0.2.0</Version>
<Version>0.3.0</Version>
<Authors>Stuart Meeks</Authors>
<Description>Self-update for Spectre.Console CLIs: pluggable update sources (GitHub Releases over HTTP, GitHub Releases via gh CLI for private repos, generic HTTPS manifest, custom), SHA-256 verification, atomic file swap, and a drop-in `update` command.</Description>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
Expand All @@ -38,10 +38,25 @@
<InternalsVisibleTo Include="NextIteration.SpectreConsole.SelfUpdate.Tests" />
</ItemGroup>

<!--
Runtime-aligned Microsoft platform deps are floored per-TFM. A library's
PackageReference version is a floor NuGet forces on every consumer, so a
single 10.0.x floor would drag net8 consumers off their own 8.0.x LTS
servicing line. Each target floors these at the latest stable servicing
version of its own major.
-->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.10" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.9" />
<PackageReference Include="Spectre.Console" Version="0.56.0" />
<PackageReference Include="Spectre.Console" Version="0.57.2" />
<PackageReference Include="Spectre.Console.Cli" Version="0.55.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Spectre.Console.Testing" Version="0.56.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.57.2" />
</ItemGroup>

<ItemGroup>
Expand Down