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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "9.0.0"
".": "9.0.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [9.0.1](https://github.com/Flagsmith/flagsmith-dotnet-client/compare/v9.0.0...v9.0.1) (2026-01-07)


### Bug Fixes

* **CI:** Run CI tests against the expected .NET version ([#182](https://github.com/Flagsmith/flagsmith-dotnet-client/issues/182)) ([281f11f](https://github.com/Flagsmith/flagsmith-dotnet-client/commit/281f11f3e99fba9459f9b78e77f30526c6f1dd90))

## [9.0.0](https://github.com/Flagsmith/flagsmith-dotnet-client/compare/v8.0.2...v9.0.0) (2025-11-28)


Expand Down
2 changes: 1 addition & 1 deletion Flagsmith.Client.Test/SdkVersionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class SdkVersionTest
public void TestGetUserAgentReturnsExpectedVersion()
{
// x-release-please-start-version
string expectedVersion = "9.0.0";
string expectedVersion = "9.0.1";
// x-release-please-end

// When
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PackageId>Flagsmith</PackageId>
<Title>Flagsmith</Title>
<Version>9.0.0</Version>
<Version>9.0.1</Version>
<Authors>flagsmith</Authors>
<Company>Flagsmith</Company>
<PackageDescription>Client SDK for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://flagsmith.com/</PackageDescription>
Expand Down
2 changes: 1 addition & 1 deletion Flagsmith.FlagsmithClient/SdkVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Flagsmith
public static class SdkVersion
{
// x-release-please-start-version
private const string Version = "9.0.0";
private const string Version = "9.0.1";
// x-release-please-end

/// <summary>
Expand Down
Loading