Skip to content

Commit

Permalink
Version 6.9.0-v2.1-23.4.02.00 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MGDS01 committed Jun 24, 2024
1 parent 3b091c3 commit 6ffec9f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# DocuSign C# Client Changelog

## [v6.9.0] - eSignature API v2.1-23.4.02.00 - 2024-06-24
- Updated the SDK release version.
- Updated C# SDK dependencies.
- Microsoft.IdentityModel.Protocols: Version bumped from 7.3.1 to 7.5.2.
- System.IdentityModel.Tokens.Jwt: Version bumped from 7.3.1 to 7.5.2.
- BouncyCastle.Cryptography: Version bumped from 2.3.0 to 2.3.1.

## [v6.9.0-rc2] - eSignature API v2.1-23.4.02.00 - 2024-04-05
### Breaking Changes
- Updated C# SDK dependencies.
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/DocuSign.eSign/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Configuration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "6.9.0-rc2";
public const string Version = "6.9.0";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down
14 changes: 7 additions & 7 deletions sdk/src/DocuSign.eSign/DocuSign.eSign.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Project Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="NuGet">
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
Expand All @@ -16,7 +16,7 @@
<RootNamespace>DocuSign.eSign</RootNamespace>
<AssemblyName>DocuSign.eSign</AssemblyName>
<NeutralLanguage>en-US</NeutralLanguage>
<VersionPrefix>6.9.0-rc2</VersionPrefix>
<VersionPrefix>6.9.0</VersionPrefix>
<VersionSuffix/>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -26,7 +26,7 @@
<PackageLicenseUrl>https://github.com/docusign/docusign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/docusign/docusign-csharp-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>[v6.9.0-rc2] - ESignature API v2.1-23.4.02.00 - 4/4/2024</PackageReleaseNotes>
<PackageReleaseNotes>[v6.9.0] - ESignature API v2.1-23.4.02.00 - 4/4/2024</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
<DefineConstants>NET462</DefineConstants>
Expand All @@ -41,9 +41,9 @@
<PackageReference Include="Microsoft.CSharp" Version="4.7.0"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0"/>
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="7.3.1"/>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1"/>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0"/>
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="7.5.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.2" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1" />
</ItemGroup>
<ItemGroup/>
<ItemGroup />
</Project>
2 changes: 1 addition & 1 deletion sdk/src/DocuSign.eSign/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
// [assembly: AssemblyVersion("1.0.*")]
internal class AssemblyInformation
{
public const string AssemblyInformationalVersion = "6.9.0-rc2";
public const string AssemblyInformationalVersion = "6.9.0";
}
6 changes: 3 additions & 3 deletions test/SdkNetCoreTests/SdkNetCoreTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="7.3.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0" />
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="7.5.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.2" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 6ffec9f

Please sign in to comment.