Skip to content

Commit

Permalink
Merge pull request #20 from pascal89/fix/interface-naming
Browse files Browse the repository at this point in the history
Corrected name of `IGrowthbook` to `IGrowthBook`
  • Loading branch information
darklordzw authored Nov 9, 2023
2 parents e008a0d + 70ea9f4 commit f908c32
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0]

- Corrected name of `IGrowthbook` to `IGrowthBook`

## [0.1.2]

- ci: moved from MSTest to Xunit
Expand Down
2 changes: 1 addition & 1 deletion GrowthBook/GrowthBook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace GrowthBook
// feature flagging and A/B testing platform.
// More info at https://www.growthbook.io
/// </summary>
public class GrowthBook : IGrowthbook, IDisposable
public class GrowthBook : IGrowthBook, IDisposable
{
// #region Private Members

Expand Down
4 changes: 2 additions & 2 deletions GrowthBook/GrowthBook.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RepositoryUrl>https://github.com/growthbook/growthbook-csharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GrowthBook,A/B test,feature toggle</PackageTags>
<Version>0.1.2</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -25,4 +25,4 @@
</None>
</ItemGroup>

</Project>
</Project>
2 changes: 1 addition & 1 deletion GrowthBook/IGrowthBook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace GrowthBook
/// <summary>
/// Providing operations to interact with feature flags.
/// </summary>
public interface IGrowthbook
public interface IGrowthBook
{
/// <summary>
/// Checks to see if a feature is on.
Expand Down

0 comments on commit f908c32

Please sign in to comment.