Skip to content

Commit

Permalink
bump minor version to v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkw-statsig committed Jul 8, 2022
1 parent f4558fb commit bf98e65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dotnet-statsig-tests/Common/StatsigTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ await StatsigClient.Initialize
Assert.True(requestHeaders["STATSIG-API-KEY"].ToString().Equals("client-fake-key"));

Assert.True(metadata["sdkType"].Equals("dotnet-client"));
Assert.True(metadata["sdkVersion"].Equals("1.11.0.0"));
Assert.True(metadata["sdkVersion"].Equals("1.12.0.0"));

Assert.True(StatsigClient.CheckGate("test_gate"));
var exp = StatsigClient.GetExperiment("test_config");
Expand Down Expand Up @@ -324,7 +324,7 @@ await StatsigServer.Initialize
Assert.True(requestHeaders["STATSIG-API-KEY"].ToString().Equals("secret-fake-key"));

Assert.True(metadata["sdkType"].Equals("dotnet-server"));
Assert.True(metadata["sdkVersion"].Equals("1.11.0.0"));
Assert.True(metadata["sdkVersion"].Equals("1.12.0.0"));

var gate = await StatsigServer.CheckGate(user, "test_gate");
Assert.True(gate);
Expand Down
2 changes: 1 addition & 1 deletion dotnet-statsig/dotnet-statsig.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RootNamespace>statsig_dotnet</RootNamespace>
<PackOnBuild>true</PackOnBuild>
<PackageId>Statsig</PackageId>
<Version>1.11.0</Version>
<Version>1.12.0</Version>
<Authors>Statsig Inc.</Authors>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Owners>Statsig Inc.,</Owners>
Expand Down

0 comments on commit bf98e65

Please sign in to comment.