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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://github.com/NinjaRocks/FeatureOne/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FeatureOne v1.0.6
# <img src="https://github.com/NinjaRocks/FeatureOne/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FeatureOne v1.0.7
[![NuGet version](https://badge.fury.io/nu/FeatureOne.svg)](https://badge.fury.io/nu/FeatureOne) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/NinjaRocks/FeatureOne/blob/master/License.md) [![CI](https://github.com/NinjaRocks/FeatureOne/actions/workflows/CI-Build.yml/badge.svg)](https://github.com/NinjaRocks/FeatureOne/actions/workflows/CI-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/ninjarocks/FeatureOne?logo=github&sort=semver)](https://github.com/ninjarocks/FeatureOne/releases/latest)
[![CodeQL](https://github.com/NinjaRocks/FeatureOne/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/FeatureOne/actions/workflows/codeql.yml) [![.Net Stardard](https://img.shields.io/badge/.Net%20Standard-2.1-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/2.1)

Expand Down
6 changes: 3 additions & 3 deletions src/FeatureOne/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("2023")]
[assembly: System.Reflection.AssemblyDescriptionAttribute(".Net Library to implement feature toggles.")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.6.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.6")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.7.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.7")]
[assembly: System.Reflection.AssemblyProductAttribute("FeatureOne")]
[assembly: System.Reflection.AssemblyTitleAttribute("FeatureOne")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.6.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.7.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/NinjaRocks/FeatureOne")]

// Generated by the MSBuild WriteCodeFragment class.
Expand Down
21 changes: 8 additions & 13 deletions src/FeatureOne/FeatureOne.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Title>FeatureOne</Title>
<Authors>najaf.shayk</Authors>
<Authors>ninja.shayk</Authors>
<Company>Ninja.Sha!4H</Company>
<Product>FeatureOne</Product>
<Description>.Net library to implement feature toggles.</Description>
Expand All @@ -23,21 +23,16 @@
<RepositoryUrl>https://github.com/NinjaRocks/FeatureOne</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>feature-toggle; feature-flag; feature-flags; feature-toggles; .netstandard2.1; featureOne</PackageTags>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>ninja-icon-16.png</PackageIcon>
<PackageReleaseNotes>Release Notes v1.0.6 - Ported to .net standard 2.1
<PackageReleaseNotes>Release Notes v1.0.7 - release to target .net standard 2.1.

Core Functionality - Includes the main functionality of FeatureOne

Implement Feature Toggles to drive availability of a features
Implement Feature isEnabled check in codebase to run the status of each toggle.
Add Simple and Regex conditions to toggle definitions.
Extensibility - Provides an extension for custom implementations

Implement custom Conditions.
Implement custom Storage Provider.
Implement custom Logger.</PackageReleaseNotes>
Core Functionality :-
- To Implement Feature Toggles to hide/show program features.
- Provides Out of box Simple and Regex toggle conditions that can be extended for any use case.
- Provides Extensibility for custom implementation of backend storages.
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down