Skip to content

Commit 2956a58

Browse files
RamukaRitikroot
andauthored
Version 6.5.0-v2.1-25.3.01.00 release (#301)
Co-authored-by: root <[email protected]>
1 parent c4aee20 commit 2956a58

File tree

12 files changed

+855
-75
lines changed

12 files changed

+855
-75
lines changed

CHANGELOG.md

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

4-
## [v6.4.0] - eSignature API v2.1-25.2.02.00 - 2025-08-11
4+
## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-09-29
55
### Changed
6-
- Added support for version v2.1-25.2.02.00 of the DocuSign ESignature API.
6+
- Added support for version v2.1-25.3.01.00 of the Docusign ESignature API.
77
- Updated the SDK release version.
88

9+
## [v6.4.0] - eSignature API v2.1-25.2.02.00 - 2025-08-29
10+
### Changed
11+
- Added support for version v2.1-25.2.02.00 of the DocuSign ESignature API.
12+
- Updated the SDK release version.
13+
- Fixed type for `customParameters` property under `connectOAuthConfig`.
914
## [v6.3.0] - eSignature API v2.1-25.2.01.00 - 2025-07-08
1015
### Changed
1116
- Added support for version v2.1-25.2.01.00 of the DocuSign ESignature 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-esign-java</artifactId>
60-
<version>6.4.0</version>
60+
<version>6.5.0</version>
6161
</dependency>
6262
```
6363
8. If your project is still open, restart Eclipse.

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>docusign-esign-java</artifactId>
66
<packaging>jar</packaging>
77
<name>docusign-esign-java</name>
8-
<version>6.4.0</version>
8+
<version>6.5.0</version>
99
<url>https://developers.docusign.com</url>
1010
<description>The official Docusign eSignature JAVA client is based on version 2.1 of the Docusign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</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

@@ -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/esign/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public ApiClient() {
9393
String javaVersion = System.getProperty("java.version");
9494

9595
// Set default User-Agent.
96-
setUserAgent("Swagger-Codegen/v2.1/6.4.0/Java/" + javaVersion);
96+
setUserAgent("Swagger-Codegen/v2.1/6.5.0/Java/" + javaVersion);
9797

9898
// Setup authentications (key: authentication name, value: authentication).
9999
authentications = new HashMap<String, Authentication>();

0 commit comments

Comments
 (0)