Skip to content

Commit

Permalink
Version 8.0.0-rc2-v2.1-24.2.00.00 release (#450)
Browse files Browse the repository at this point in the history
Co-authored-by: root <[email protected]>
  • Loading branch information
garg-mudit and root authored Jul 26, 2024
1 parent 0790ec1 commit 402f5ad
Show file tree
Hide file tree
Showing 11 changed files with 172 additions and 67 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# DocuSign C# Client Changelog

## [v8.0.0-rc2] - eSignature API v2.1-24.2.00.00 - 2024-07-23
### Changed
- Introduced async versions of `ApiClient` authorization methods.
- Corrected SDK metadata.
- Updated the SDK release version.
## [v8.0.0-rc1] - eSignature API v2.1-24.2.00.00 - 2024-07-02

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2021 - DocuSign, Inc. (https://www.docusign.com)
Copyright (c) 2021 - Docusign, Inc. (https://www.docusign.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
<a id="versionInformation"></a>
### Version Information
- **API version**: v2.1
- **Latest SDK version (Including prerelease)**: 8.0.0-rc1
- **Latest SDK version (Including prerelease)**: 8.0.0-rc2

<a id="requirements"></a>
### Requirements
Expand Down
2 changes: 1 addition & 1 deletion sdk/.doxygenconfig
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = "DocuSign CSharp Docs"
PROJECT_NAME = "Docusign CSharp Docs"

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
Expand Down
10 changes: 5 additions & 5 deletions sdk/DocuSign.eSign.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
VisualStudioVersion = 12.0.0.0
MinimumVisualStudioVersion = 10.0.0.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{6832F73B-2498-44E8-A8A5-5DD858B47089}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{0DD2EBA2-97AB-491E-911A-01F064CA09E7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6832F73B-2498-44E8-A8A5-5DD858B47089}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6832F73B-2498-44E8-A8A5-5DD858B47089}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6832F73B-2498-44E8-A8A5-5DD858B47089}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6832F73B-2498-44E8-A8A5-5DD858B47089}.Release|Any CPU.Build.0 = Release|Any CPU
{0DD2EBA2-97AB-491E-911A-01F064CA09E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DD2EBA2-97AB-491E-911A-01F064CA09E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DD2EBA2-97AB-491E-911A-01F064CA09E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DD2EBA2-97AB-491E-911A-01F064CA09E7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
8 changes: 4 additions & 4 deletions sdk/src/DocuSign.eSign/Client/Auth/OAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class OAuth
*
* UserInfo model with the following properties:
* <br /><b>sub</b>: the user ID GUID.
* <br /><b>accounts</b>: this is list of DocuSign accounts associated with the current user.
* <br /><b>accounts</b>: this is list of Docusign accounts associated with the current user.
* <br /><b>name</b>: the user's full name.
* <br /><b>givenName</b>: the user's given name.
* <br /><b>familyName</b>: the user's family name.
Expand All @@ -73,7 +73,7 @@ public class UserInfo : IEquatable<UserInfo>, IValidatableObject
/// isDefault: whether this is the default account, when the user has access to multiple accounts.
/// accountName: the human-readable name of the account.
/// baseUri: the base URI associated with this account.
/// It also tells which DocuSign data center the account is hosted on.
/// It also tells which Docusign data center the account is hosted on.
/// </summary>
[DataContract]
public class Account : IEquatable<Account>, IValidatableObject
Expand Down Expand Up @@ -235,8 +235,8 @@ public IEnumerable<ValidationResult> Validate(ValidationContext validationContex

/// <summary>
/// Organization model with the following properties:
/// organizationId: the organization ID GUID if DocuSign Org Admin is enabled.
/// links: this is list of organization direct links associated with the DocuSign account.
/// organizationId: the organization ID GUID if Docusign Org Admin is enabled.
/// links: this is list of organization direct links associated with the Docusign account.
/// </summary>
[DataContract]
public class Organization : IEquatable<Organization>, IValidatableObject
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 = "8.0.0-rc1";
public const string Version = "8.0.0-rc2";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down
Loading

0 comments on commit 402f5ad

Please sign in to comment.