Skip to content

Commit e5a461e

Browse files
garg-muditroot
andauthored
Version 2.0.0-v1.0.0-1.0.5 release (#10)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 6ca2a05 commit e5a461e

File tree

10 files changed

+31
-13
lines changed

10 files changed

+31
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [v2.0.0] - Maestro API v1.0.0-1.0.5 - 2025-05-21
2+
⚠️ Deprecated – Maestro is now available as part of the new IAM SDK: https://developers.docusign.com/docs/sdks/
3+
14
## [v1.0.2] - Maestro API v1.0.0-1.0.5 - 2024-11-15
25
### Changed
36
- Resolved an issue that prevented the use of `RequestJWTApplicationToken` with a production account URL.

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1-
# The Official Docusign Maestro C# Client SDK
1+
2+
## ⚠️ Deprecation Notice
3+
This SDK is deprecated and no longer actively maintained.
4+
5+
Docusign has launched a new IAM SDK, which includes support for Maestro, Navigator and Connected Fields API families in a single, unified package.
6+
7+
👉 We recommend migrating to the IAM SDK for the latest updates, support, and a streamlined developer experience.
8+
9+
🔗 [Learn more and get started](https://developers.docusign.com/docs/sdks/)
10+
11+
# The Official Docusign Maestro C# Client SDK (Deprecated)
212

313
[![Nuget version][nuget-image]][nuget-url]
414
[![Nuget downloads][downloads-image]][downloads-url]
15+
![Deprecated](https://img.shields.io/badge/status-deprecated-red.svg)
516

617
The Docusign SDK makes integrating Docusign into your apps and websites a seamless experience.
718

@@ -33,7 +44,7 @@ This client SDK is provided as open source, which enables you to customize its f
3344
<a id="versionInformation"></a>
3445
### Version Information
3546
- **API version**: 1.0.0
36-
- **Latest SDK version (Including prerelease)**: 1.0.2
47+
- **Latest SDK version (Including prerelease)**: 2.0.0
3748

3849
<a id="requirements"></a>
3950
### Requirements

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", "{879CADF6-42C3-406F-AD70-C05BFA5F75AB}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.Maestro", "src\DocuSign.Maestro\DocuSign.Maestro.csproj", "{113DAF81-6E61-4F73-A693-62ABE704D7C1}"
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-
{879CADF6-42C3-406F-AD70-C05BFA5F75AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{879CADF6-42C3-406F-AD70-C05BFA5F75AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{879CADF6-42C3-406F-AD70-C05BFA5F75AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{879CADF6-42C3-406F-AD70-C05BFA5F75AB}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{113DAF81-6E61-4F73-A693-62ABE704D7C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{113DAF81-6E61-4F73-A693-62ABE704D7C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{113DAF81-6E61-4F73-A693-62ABE704D7C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{113DAF81-6E61-4F73-A693-62ABE704D7C1}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

sdk/src/DocuSign.Maestro/Api/WorkflowInstanceManagementApi.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ public interface IWorkflowInstanceManagementApi : IApiAccessor
219219
/// <summary>
220220
/// Represents a collection of functions to interact with the API endpoints
221221
/// </summary>
222+
[Obsolete("⚠️ Deprecated – Maestro is now available as part of the new IAM SDK: https://developers.docusign.com/docs/sdks/")]
222223
public partial class WorkflowInstanceManagementApi : IWorkflowInstanceManagementApi
223224
{
224225
private DocuSign.Maestro.Client.ExceptionFactory _exceptionFactory = (name, response) => null;

sdk/src/DocuSign.Maestro/Api/WorkflowManagementApi.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ public interface IWorkflowManagementApi : IApiAccessor
365365
/// <summary>
366366
/// Represents a collection of functions to interact with the API endpoints
367367
/// </summary>
368+
[Obsolete("⚠️ Deprecated – Maestro is now available as part of the new IAM SDK: https://developers.docusign.com/docs/sdks/")]
368369
public partial class WorkflowManagementApi : IWorkflowManagementApi
369370
{
370371
private DocuSign.Maestro.Client.ExceptionFactory _exceptionFactory = (name, response) => null;

sdk/src/DocuSign.Maestro/Api/WorkflowTriggerApi.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public interface IWorkflowTriggerApi : IApiAccessor
8585
/// <summary>
8686
/// Represents a collection of functions to interact with the API endpoints
8787
/// </summary>
88+
[Obsolete("⚠️ Deprecated – Maestro is now available as part of the new IAM SDK: https://developers.docusign.com/docs/sdks/")]
8889
public partial class WorkflowTriggerApi : IWorkflowTriggerApi
8990
{
9091
private DocuSign.Maestro.Client.ExceptionFactory _exceptionFactory = (name, response) => null;

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.2";
29+
public const string Version = "2.0.0";
3030

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ namespace DocuSign.Maestro.Client
3636
/// <summary>
3737
/// DocuSignClient is mainly responsible for facilitating HTTP calls to the Docusign APIs.
3838
/// </summary>
39+
[Obsolete("⚠️ Deprecated – Maestro is now available as part of the new IAM SDK: https://developers.docusign.com/docs/sdks/.")]
3940
public class DocuSignClient
4041
{
4142
// Rest API base path constants

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
55
<IsPackable>true</IsPackable>
66
<PackageId>DocuSign.Maestro</PackageId>
7-
<Description>The Docusign NuGet package makes integrating Docusign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-maestro-csharp-client repository.</Description>
7+
<Description>The Docusign NuGet package makes integrating Docusign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-maestro-csharp-client repository. This SDK is deprecated and no longer actively maintained.</Description>
88
<Company>DocuSign Inc.</Company>
99
<Owners>DocuSign</Owners>
10-
<Copyright>Copyright © Docusign 2024</Copyright>
10+
<Copyright>Copyright © Docusign 2025</Copyright>
1111
<AssemblyTitle>DocuSign.Maestro</AssemblyTitle>
1212
<Authors>DocuSign</Authors>
1313
<OutputType>Library</OutputType>
@@ -16,7 +16,7 @@
1616
<RootNamespace>DocuSign.Maestro</RootNamespace>
1717
<AssemblyName>DocuSign.Maestro</AssemblyName>
1818
<NeutralLanguage>en-US</NeutralLanguage>
19-
<VersionPrefix>1.0.2</VersionPrefix>
19+
<VersionPrefix>2.0.0</VersionPrefix>
2020
<VersionSuffix/>
2121
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -26,7 +26,7 @@
2626
<PackageLicenseUrl>https://github.com/docusign/docusign-maestro-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
2727
<RepositoryUrl>https://github.com/docusign/docusign-maestro-csharp-client</RepositoryUrl>
2828
<RepositoryType>git</RepositoryType>
29-
<PackageReleaseNotes>[v1.0.2] - Maestro API v1.0.0-1.0.5 - 11/15/2024</PackageReleaseNotes>
29+
<PackageReleaseNotes>⚠️ Deprecated – Maestro is now available as part of the new IAM SDK: https://developers.docusign.com/docs/sdks/</PackageReleaseNotes>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
3232
<DefineConstants>NET462</DefineConstants>

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.2";
25+
public const string AssemblyInformationalVersion = "2.0.0";
2626
}

0 commit comments

Comments
 (0)