Skip to content

Commit 71fd025

Browse files
authored
Merge pull request #13 from NinjaRocks/release/3.0.0
Upgrade to .Net 6.0
2 parents 18f4890 + 2902d2b commit 71fd025

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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: 2.0.4
1+
next-version: 3.0.0
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 v2.0.4
1+
# <img src="https://github.com/NinjaRocks/FeatureOne/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> FeatureOne v3.0.0
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) [![build-master](https://github.com/NinjaRocks/FeatureOne/actions/workflows/Build-Master.yml/badge.svg)](https://github.com/NinjaRocks/FeatureOne/actions/workflows/Build-Master.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.File/FeatureOne.File.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>disable</Nullable>
66
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
77
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
@@ -22,11 +22,11 @@
2222
<RepositoryUrl>https://github.com/NinjaRocks/FeatureOne</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
2424
<PackageTags>feature-toggle; feature-flag; feature-flags; feature-toggles; .netstandard2.1; featureOne; File-system; File-Backend; File-Toggles;</PackageTags>
25-
<Version>2.0.4</Version>
25+
<Version>3.0.0</Version>
2626
<PackageLicenseFile>License.md</PackageLicenseFile>
2727
<PackageIcon>ninja-icon-16.png</PackageIcon>
2828
<PackageReleaseNotes>
29-
Release Notes v2.0.4. - File Storage Provider
29+
Release Notes v3.0.0. - Targets .Net 6.0
3030
Adds support for File system storage provider for implementing Feature Toggles stored on file.
3131
- Provides memory caching enabled via configuration.
3232
- Added extensibility for Custom implementations-

src/FeatureOne.SQL/FeatureOne.SQL.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
@@ -23,11 +23,11 @@
2323
<RepositoryUrl>https://github.com/NinjaRocks/FeatureOne</RepositoryUrl>
2424
<RepositoryType>git</RepositoryType>
2525
<PackageTags>feature-toggle; feature-flag; feature-flags; feature-toggles; .netstandard2.1; featureOne; SQL-Backend; SQL-Toggles; SQL</PackageTags>
26-
<Version>2.0.4</Version>
26+
<Version>3.0.0</Version>
2727
<PackageLicenseFile>License.md</PackageLicenseFile>
2828
<PackageIcon>ninja-icon-16.png</PackageIcon>
2929
<PackageReleaseNotes>
30-
Release Notes v2.0.4. - SQL Storage Provider
30+
Release Notes v3.0.0. - Targets .Net 6.0
3131
Adds support for SQL storage provider for implementing Feature Toggles.
3232
- Supports MSSQL, SQLite, ODBC, OLEDB, MySQL, PostgreSQL Db providers.
3333
- Provides memory caching - enabled via configuration.

src/FeatureOne/FeatureOne.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
@@ -23,11 +23,11 @@
2323
<RepositoryUrl>https://github.com/NinjaRocks/FeatureOne</RepositoryUrl>
2424
<RepositoryType>git</RepositoryType>
2525
<PackageTags>feature-toggle; feature-flag; feature-flags; feature-toggles; .netstandard2.1; featureOne</PackageTags>
26-
<Version>2.0.4</Version>
26+
<Version>3.0.0</Version>
2727
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
2828
<PackageIcon>ninja-icon-16.png</PackageIcon>
2929
<PackageReleaseNotes>
30-
Release Notes v2.0.4. Core Functionality :-
30+
Release Notes v3.0.0 Core Functionality :- Targets .Net 6.0
3131
- To Implement Feature Toggles to hide/show program features.
3232
- Provides Out of box Simple and Regex toggle conditions .
3333
- Provides extensibility for custom implementation

0 commit comments

Comments
 (0)