diff --git a/HISTORY.md b/HISTORY.md index a4a7742..462588a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,7 @@ -## v6.0 +## v6.1 +- Added target framework 8 (6 and 7 are still supported) + +## v6.0 - Changed framework dependency from netstandard1.6 to net6.0 ## v5.0 diff --git a/README.md b/README.md index f23327d..1d430dd 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Primary goal of this library is to enable users with little or no cryptography knowledge to encrypt and decrypt data in an easy and safe manner as well work with passwords and random values. -EasyCrypto is .NET 6+ library that helps with +EasyCrypto is .NET 6, 7, 8+ library that helps with - Encryption and decryption of streams, byte arrays, strings and files - Password generating, hashing and validating - Generating crypto secure random bytes, integers and doubles diff --git a/nuget-README.md b/nuget-README.md index 278ad85..d50c49d 100644 --- a/nuget-README.md +++ b/nuget-README.md @@ -3,7 +3,7 @@ Primary goal of this library is to enable users with little or no cryptography knowledge to encrypt and decrypt data in an easy and safe manner as well work with passwords and random values. -EasyCrypto is .NET 6+ library that helps with +EasyCrypto is .NET 6, 7, 8 library that helps with - Encryption and decryption of streams, byte arrays, strings and files - Password generating, hashing and validating - Generating crypto secure random bytes, integers and doubles diff --git a/src/EasyCrypto/EasyCrypto.csproj b/src/EasyCrypto/EasyCrypto.csproj index 349ab67..92654bd 100644 --- a/src/EasyCrypto/EasyCrypto.csproj +++ b/src/EasyCrypto/EasyCrypto.csproj @@ -1,11 +1,11 @@  - net6.0;net7.0 + net6.0;net7.0;net8.0 enable disable 11 - 6.0.0 + 6.1.0 MIT True diff --git a/tests/EasyCrypto.Tests/EasyCrypto.Tests.csproj b/tests/EasyCrypto.Tests/EasyCrypto.Tests.csproj index 6407728..b93c9ac 100644 --- a/tests/EasyCrypto.Tests/EasyCrypto.Tests.csproj +++ b/tests/EasyCrypto.Tests/EasyCrypto.Tests.csproj @@ -1,7 +1,7 @@ - net6.0;net7.0 + net6.0;net7.0;net8.0 false