Skip to content

Commit

Permalink
v1.13.0 with sys.text
Browse files Browse the repository at this point in the history
  • Loading branch information
rajanadar committed Mar 25, 2023
1 parent 31a8516 commit 67f85e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
## 1.12.2.2 (TBD)
## 1.13.0 (TBD)

**BREAKING CHANGES:**

* [GH-300](https://github.com/rajanadar/VaultSharp/issues/300) Remove support for EOL .NET 4.5
* Remove support for EOL .NET 4.6, .NET 4.6.1
* Remove support for .NET Standard 1.3
* Remove support for .NET Standard 1.3
* [GH-300](https://github.com/rajanadar/VaultSharp/issues/304) Remove Newtonsoft.Json dependency

**IMROVEMENTS:**

* [GH-301](https://github.com/rajanadar/VaultSharp/pull/301) Add support for reading a secret backend
* Add support for .NET 7.0
* Use System.Text.Json as the JSON provider instead of Newtonsoft.Json
* [GH-300](https://github.com/rajanadar/VaultSharp/issues/304) Use System.Text.Json as the JSON provider instead of Newtonsoft.Json

## 1.12.2.1 (January 23, 2023)

Expand Down
6 changes: 3 additions & 3 deletions src/VaultSharp/VaultSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>VaultSharp.snk</AssemblyOriginatorKeyFile>
<Title>VaultSharp</Title>
<Version>1.12.2.2</Version>
<Version>1.13.0</Version>
<Authors>Raja Nadar</Authors>
<Copyright>Copyright © 2023 Raja Nadar. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/rajanadar/VaultSharp</PackageProjectUrl>
Expand All @@ -23,8 +23,8 @@
This library is built with .NET Standard 2.0, .NET Standard 2.1, 4.6.2, 4.7.2*, 4.8, .NET 6 &amp; .NET 7 and hence is cross-platform across .NET Core 2.x, 3.x, .NET Frameworks 4.x, Xamarin iOS, Android, Mac, UWP etc.</Description>
<RepositoryType>Github</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>1.12.2.2</AssemblyVersion>
<FileVersion>1.12.2.2</FileVersion>
<AssemblyVersion>1.13.0</AssemblyVersion>
<FileVersion>1.13.0</FileVersion>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>

Expand Down
2 changes: 1 addition & 1 deletion test/VaultSharp.Samples/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace VaultSharp.Samples
{
partial class Program
{
private const string ExpectedVaultVersion = "1.12.2";
private const string ExpectedVaultVersion = "1.13.0";

private static IVaultClient _unauthenticatedVaultClient;
private static IVaultClient _authenticatedVaultClient;
Expand Down

0 comments on commit 67f85e6

Please sign in to comment.