Skip to content

Commit df683c4

Browse files
authored
Merge pull request #5 from docusign/1.0.0-rc3-v1.0.0-1.0.4
Version 1.0.0-rc3 release
2 parents f356956 + 77f8da9 commit df683c4

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [v1.0.0-rc3] - Maestro API v1.0.0-1.0.4 - 2024-05-20
2+
### Changed
3+
- Updated C# SDK dependencies.
4+
- BouncyCastle.Cryptography: Version bumped from 2.3.0 to 2.3.1.
5+
- Microsoft.IdentityModel.JsonWebTokens: Version bumped from 7.5.1 to 7.5.2.
16
## [v1.0.0-rc2] - Maestro API v1.0.0-1.0.4 - 2024-04-22
27
### Breaking Changes
38
- Updated from System.IdentityModel.Tokens.Jwt to Microsoft.IdentityModel.JsonWebTokens for token handling.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Maestro authors and executes experiences that allow non-coders the ability to de
77

88
## Version Information
99
- **API version**: 1.0.0
10-
- **Latest SDK version (Including prerelease)**: 1.0.0-rc2
10+
- **Latest SDK version (Including prerelease)**: 1.0.0-rc3
1111

1212
## Requirements
1313
* Microsoft .NET version 4.6.2+ (4.7 recommended)
@@ -42,15 +42,15 @@ This client has the following external dependencies:
4242

4343
### .NET Standard v2 and .NET Core:
4444
* Newtonsoft.Json v13.0.3
45-
* BouncyCastle.Cryptography v2.3.0
45+
* BouncyCastle.Cryptography v2.3.1
4646
* System.ComponentModel.Annotations v5.0.0
47-
* Microsoft.IdentityModel.JsonWebTokens v7.5.1
47+
* Microsoft.IdentityModel.JsonWebTokens v7.5.2
4848

4949
### .NET Framework, version 4.6.2:
5050
* Newtonsoft.Json v13.0.3
51-
* BouncyCastle.Cryptography v2.3.0
51+
* BouncyCastle.Cryptography v2.3.1
5252
* System.ComponentModel.Annotations v5.0.0
53-
* Microsoft.IdentityModel.JsonWebTokens v7.5.1
53+
* Microsoft.IdentityModel.JsonWebTokens v7.5.2
5454

5555
## Code examples
5656
Explore our GitHub repository for the [Launcher](https://github.com/docusign/code-examples-csharp/), a self-executing package housing code examples for the Maestro C# SDK. This package showcases several common use cases and their respective source files. Additionally, you can download a version preconfigured for your Docusign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples support both the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) and [JSON Web Token (JWT)](https://developers.docusign.com/platform/auth/jwt/) authentication workflows.

sdk/DocuSign.Maestro.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.Maestro", "src\DocuSign.Maestro\DocuSign.Maestro.csproj", "{E4D29887-C68D-45BE-90AA-75DB9406A8E8}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.Maestro", "src\DocuSign.Maestro\DocuSign.Maestro.csproj", "{B10DD49C-EEA1-443E-8C13-6FED8E304853}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution
99
Debug|Any CPU = Debug|Any CPU
1010
Release|Any CPU = Release|Any CPU
1111
EndGlobalSection
1212
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{E4D29887-C68D-45BE-90AA-75DB9406A8E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{E4D29887-C68D-45BE-90AA-75DB9406A8E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{E4D29887-C68D-45BE-90AA-75DB9406A8E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{E4D29887-C68D-45BE-90AA-75DB9406A8E8}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{B10DD49C-EEA1-443E-8C13-6FED8E304853}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{B10DD49C-EEA1-443E-8C13-6FED8E304853}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{B10DD49C-EEA1-443E-8C13-6FED8E304853}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{B10DD49C-EEA1-443E-8C13-6FED8E304853}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

sdk/src/DocuSign.Maestro/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Configuration
2626
/// Version of the package.
2727
/// </summary>
2828
/// <value>Version of the package.</value>
29-
public const string Version = "1.0.0-rc2";
29+
public const string Version = "1.0.0-rc3";
3030

3131
/// <summary>
3232
/// Identifier for ISO 8601 DateTime Format

sdk/src/DocuSign.Maestro/DocuSign.Maestro.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<RootNamespace>DocuSign.Maestro</RootNamespace>
1717
<AssemblyName>DocuSign.Maestro</AssemblyName>
1818
<NeutralLanguage>en-US</NeutralLanguage>
19-
<VersionPrefix>1.0.0-rc2</VersionPrefix>
19+
<VersionPrefix>1.0.0-rc3</VersionPrefix>
2020
<VersionSuffix/>
2121
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -26,7 +26,7 @@
2626
<PackageLicenseUrl>https://github.com/docusign/docusign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
2727
<RepositoryUrl>https://github.com/docusign/docusign-csharp-client</RepositoryUrl>
2828
<RepositoryType>git</RepositoryType>
29-
<PackageReleaseNotes>[v1.0.0-rc2] - Maestro API v1.0.0-1.0.4 - 4/22/2024</PackageReleaseNotes>
29+
<PackageReleaseNotes>[v1.0.0-rc3] - Maestro API v1.0.0-1.0.4 - 5/20/2024</PackageReleaseNotes>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
3232
<DefineConstants>NET462</DefineConstants>
@@ -38,10 +38,10 @@
3838
<Reference Include="System.Web"/>
3939
</ItemGroup>
4040
<ItemGroup>
41-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1"/>
41+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.2"/>
4242
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
4343
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0"/>
44-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0"/>
44+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1"/>
4545
</ItemGroup>
4646
<ItemGroup/>
4747
</Project>

sdk/src/DocuSign.Maestro/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
// [assembly: AssemblyVersion("1.0.*")]
2323
internal class AssemblyInformation
2424
{
25-
public const string AssemblyInformationalVersion = "1.0.0-rc2";
25+
public const string AssemblyInformationalVersion = "1.0.0-rc3";
2626
}

0 commit comments

Comments
 (0)