Skip to content

Commit 3b78e0f

Browse files
authored
v1.1.0-v2-1.0.8
Version 1.1.0 release
2 parents aee8d0f + b923549 commit 3b78e0f

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# DocuSign Rooms C# Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v1.1.0] - DocuSign Rooms API v2 - 03/25/2021
5+
### Changed
6+
- Updated the SDK release version.
7+
48
## [v1.1.0-rc] - DocuSign Rooms API v2 - 12/14/2020
59
### Changed
610
- Added support for version v2-1.0.8 of the DocuSign eSignature API.

sdk/src/DocuSign.Rooms/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.1.0-rc";
29+
public const string Version = "1.1.0";
3030

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

sdk/src/DocuSign.Rooms/DocuSign.Rooms.csproj

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
DocuSign Rooms API - v2
44
@@ -34,7 +34,10 @@ Contact: devcenter@docusign.com
3434
<PackageLicenseUrl>https://github.com/docusign/docusign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
3535
<RepositoryUrl>https://github.com/docusign/docusign-csharp-client</RepositoryUrl>
3636
<RepositoryType>git</RepositoryType>
37-
<PackageReleaseNotes>[1.1.0-rc] - DocuSign Rooms API v2 - 12/14/2020</PackageReleaseNotes>
37+
<PackageReleaseNotes>[1.1.0] - DocuSign Rooms API v2 - 03/25/2021</PackageReleaseNotes>
38+
<SignAssembly>true</SignAssembly>
39+
<AssemblyOriginatorKeyFile>DocuSignClient.snk</AssemblyOriginatorKeyFile>
40+
<Version>1.1.0</Version>
3841
</PropertyGroup>
3942

4043
<!-- .NET Framework 4.5.2 compilation flags and build options -->
@@ -61,4 +64,8 @@ Contact: devcenter@docusign.com
6164
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="5.4.0" />
6265
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.4.0" />
6366
</ItemGroup>
64-
</Project>
67+
68+
<ItemGroup>
69+
<None Include="DocuSignClient.snk" />
70+
</ItemGroup>
71+
</Project>

sdk/src/DocuSign.Rooms/DocuSign.Rooms.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id></id>
5-
<version>1.1.0-rc</version>
5+
<version>1.1.0</version>
66
<title>DocuSign.Rooms</title>
77
<authors>DocuSign</authors>
88
<owners>DocuSign</owners>
596 Bytes
Binary file not shown.

sdk/src/DocuSign.Rooms/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.1.0-rc";
25+
public const string AssemblyInformationalVersion = "1.1.0";
2626
}

test/SdkTests/JwtAuthUnitTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void JwtGetRoomsTest()
6262
Assert.IsNotNull(rooms);
6363
Assert.IsNotNull(rooms.Rooms);
6464
}
65-
65+
6666
[TestMethod]
6767
public void JwtUpdatePictureTest()
6868
{
@@ -75,4 +75,4 @@ public void JwtUpdatePictureTest()
7575
Assert.IsNotNull(rooms.Rooms);
7676
}
7777
}
78-
}
78+
}

0 commit comments

Comments
 (0)