Skip to content

Commit e7d94e9

Browse files
authored
Release/v1.0.5 (#6)
* Change to .net standard 2.1 - Release v1.0.5
1 parent 7d7a3ba commit e7d94e9

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 1.0.2
1+
next-version: 1.0.5
22
tag-prefix: '[vV]'
33
mode: ContinuousDeployment
44
branches:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img src="https://github.com/NinjaRocks/FeatureOne/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FeatureOne v1.0.2
1+
# <img src="https://github.com/NinjaRocks/FeatureOne/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FeatureOne v1.0.5
22
[![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)
33
[![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)
44

src/FeatureOne/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
1616
[assembly: System.Reflection.AssemblyCopyrightAttribute("2023")]
1717
[assembly: System.Reflection.AssemblyDescriptionAttribute(".Net Library to provide feature toggles.")]
18-
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.2.0")]
19-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.2")]
18+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.5.0")]
19+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.5")]
2020
[assembly: System.Reflection.AssemblyProductAttribute("FeatureOne")]
2121
[assembly: System.Reflection.AssemblyTitleAttribute("FeatureOne")]
22-
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.2.0")]
22+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.5.0")]
2323
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/NinjaRocks/FeatureOne")]
2424

2525
// Generated by the MSBuild WriteCodeFragment class.

src/FeatureOne/FeatureOne.csproj

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,41 @@
2222
<PackageReadmeFile>README.md</PackageReadmeFile>
2323
<RepositoryUrl>https://github.com/NinjaRocks/FeatureOne</RepositoryUrl>
2424
<RepositoryType>git</RepositoryType>
25-
<PackageTags>feature-toggle; feature-flags; feature flags; feature toggle; .netstandard2.1; featureOn</PackageTags>
26-
<Version>1.0.2</Version>
25+
<PackageTags>feature-toggle; feature-flag; feature-flags; feature-toggles; .netstandard2.1; featureOne</PackageTags>
26+
<Version>1.0.5</Version>
2727
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
28+
<PackageIcon>ninja-icon-16.png</PackageIcon>
29+
<PackageReleaseNotes>Release Notes v1.0.4 - Ported to .net standard 2.1
30+
31+
Core Functionality - Includes the main functionality of FeatureOne
32+
33+
Implement Feature Toggles to drive availability of a features
34+
Implement Feature isEnabled check in codebase to run the status of each toggle.
35+
Add Simple and Regex conditions to toggle definitions.
36+
Extensibility - Provides an extension for custom implementations
37+
38+
Implement custom Conditions.
39+
Implement custom Storage Provider.
40+
Implement custom Logger.</PackageReleaseNotes>
2841
</PropertyGroup>
2942

3043
<ItemGroup>
3144
<None Include="..\..\LICENSE.md">
3245
<Pack>True</Pack>
3346
<PackagePath>\</PackagePath>
3447
</None>
48+
<None Include="..\..\ninja-icon-16.png">
49+
<Pack>True</Pack>
50+
<PackagePath>\</PackagePath>
51+
</None>
3552
<None Include="..\..\README.md">
3653
<Pack>True</Pack>
3754
<PackagePath>\</PackagePath>
3855
</None>
3956
</ItemGroup>
4057

4158
<ItemGroup>
42-
<PackageReference Include="System.Text.Json" Version="7.0.2" />
59+
<PackageReference Include="System.Text.Json" Version="6.0.0" />
4360
</ItemGroup>
4461

4562
</Project>

0 commit comments

Comments
 (0)