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

---

## [0.7.1] — 2026-07-24

### Changed

- **Per-target-framework dependency floors.** A `PackageReference` version in a
library is a *minimum floor* NuGet forces on every consumer, so flooring the
runtime-aligned Microsoft platform packages at a single `10.0.x` dragged
`net8.0` (LTS) consumers off their own `8.0.x` servicing line. Each target now
floors at its aligned major: the `net8.0` build floors
`Microsoft.Extensions.DependencyInjection.Abstractions` at `8.0.2`,
`Microsoft.Extensions.Http` at `8.0.1`, and
`System.Security.Cryptography.ProtectedData` at `8.0.0`; the `net10.0` build
floors all three at `10.0.10`. No public API change.
- **Dependency updates.** Bumped `Spectre.Console` to `0.57.2` and
`Microsoft.SourceLink.GitHub` to `10.0.301`; test-only `Microsoft.NET.Test.Sdk`
to `18.8.1`. `Spectre.Console.Cli` stays at `0.55.0` (latest stable).

---

## [0.7.0] — 2026-06-20

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<PropertyGroup>
<PackageId>NextIteration.SpectreConsole.Auth</PackageId>
<Version>0.7.0</Version>
<Version>0.7.1</Version>
<Authors>Stuart Meeks</Authors>
<Description>Credential storage, encryption, and Spectre.Console CLI commands for managing provider credentials in CLI tools.</Description>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
Expand Down Expand Up @@ -45,14 +45,31 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.9" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.9" />
<PackageReference Include="Spectre.Console" Version="0.56.0" />
<!-- Common to all target frameworks. -->
<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" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.301" PrivateAssets="All" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>

<!--
Per-TFM floors for the runtime-aligned Microsoft platform packages. A
PackageReference version is a minimum floor NuGet forces on consumers,
so flooring these at a single 10.0.x would drag net8 (LTS) consumers off
their own 8.0.x servicing line. Each target instead floors at its own
aligned major: net8 -> 8.0.x, net10 -> 10.0.x.
-->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.0.0" />
</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" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.10" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down