Skip to content

Commit 140319c

Browse files
author
root
committed
Version 2.1.0-v2.1-1.4.3 release
1 parent 2c204a2 commit 140319c

26 files changed

+4534
-46
lines changed

CHANGELOG.md

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

4+
## [v2.1.0] - Admin API v2.1-1.4.3 - 2026-03-09
5+
### Changed
6+
- Added support for version v2.1-1.4.3 of the DocuSign Admin API.
7+
- Updated the SDK release version.
8+
49
## [v2.0.0] - Admin API v2.1-1.4.1 - 2024-10-28
510
### Changed
611
- Added support for version v2.1-1.4.1 of the DocuSign Admin API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This client SDK is provided as open source, which enables you to customize its f
5757
<dependency>
5858
<groupId>com.docusign</groupId>
5959
<artifactId>docusign-admin-java</artifactId>
60-
<version>2.0.0</version>
60+
<version>2.1.0</version>
6161
</dependency>
6262
```
6363
8. If your project is still open, restart Eclipse.

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>docusign-admin-java</artifactId>
66
<packaging>jar</packaging>
77
<name>docusign-admin-java</name>
8-
<version>2.0.0</version>
8+
<version>2.1.0</version>
99
<url>https://developers.docusign.com</url>
1010
<description>The Docusign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.</description>
1111

@@ -15,12 +15,12 @@
1515

1616
<distributionManagement>
1717
<snapshotRepository>
18-
<id>ossrh</id>
19-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
18+
<id>central</id>
19+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
2020
</snapshotRepository>
2121
<repository>
22-
<id>ossrh2</id>
23-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
22+
<id>central</id>
23+
<url>https://central.sonatype.com/repository/maven-releases/</url>
2424
</repository>
2525
</distributionManagement>
2626

@@ -76,7 +76,7 @@
7676
<goals>
7777
<goal>apply</goal>
7878
</goals>
79-
<phase>compile</phase>
79+
<phase>none</phase>
8080
</execution>
8181
</executions>
8282
</plugin>
@@ -230,7 +230,7 @@
230230
<plugin>
231231
<groupId>org.owasp</groupId>
232232
<artifactId>dependency-check-maven</artifactId>
233-
<version>10.0.2</version>
233+
<version>12.1.1</version>
234234
<configuration>
235235
<failBuildOnCVSS>8</failBuildOnCVSS>
236236
</configuration>
@@ -309,13 +309,13 @@
309309
</configuration>
310310
</plugin>
311311
<plugin>
312-
<groupId>org.sonatype.plugins</groupId>
313-
<artifactId>nexus-staging-maven-plugin</artifactId>
314-
<version>1.6.8</version>
312+
<groupId>org.sonatype.central</groupId>
313+
<artifactId>central-publishing-maven-plugin</artifactId>
314+
<version>0.8.0</version>
315+
<extensions>true</extensions>
315316
<configuration>
316-
<serverId>ossrh</serverId>
317-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
318-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
317+
<publishingServerId>central</publishingServerId>
318+
<autoPublish>true</autoPublish>
319319
</configuration>
320320
</plugin>
321321
</plugins>

src/main/java/com/docusign/admin/api/BulkExportsApi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void setApiClient(ApiClient apiClient) {
5555

5656

5757
/**
58-
* Creates a new Account Setting Export request..
58+
* Creates a new Account Setting Export request..
5959
* Required scopes: account_read
6060
* @param organizationId The organization ID Guid (required)
6161
* @param request Request body containing details about the accounts be compared (required)
@@ -68,7 +68,7 @@ public OrganizationExportResponse createAccountSettingsExport(java.util.UUID org
6868
}
6969

7070
/**
71-
* Creates a new Account Setting Export request.
71+
* Creates a new Account Setting Export request.
7272
* Required scopes: account_read
7373
* @param organizationId The organization ID Guid (required)
7474
* @param request Request body containing details about the accounts be compared (required)

0 commit comments

Comments
 (0)