Skip to content

Commit acfed09

Browse files
authored
Merge pull request #17 from docusign/1.4.1-v2-1.1.1
Version 1.4.1 release
2 parents 2aded34 + ecfc6f8 commit acfed09

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

CHANGELOG.md

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

4+
## [v1.4.1] - Rooms API v2-1.1.1 - 2023-05-31
5+
### Changed
6+
- Jakarta Support enabled
7+
- Updated the SDK release version.
8+
- Fixed Compilation Error Related to io.swagger.v3.oas.annotations.media.Schema;
9+
410
## [v1.4.0] - Rooms API v2-1.1.1 - 2023-05-30
511
### Changed
612
- Jakarta Support enabled

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>docusign-rooms-java</artifactId>
66
<packaging>jar</packaging>
77
<name>docusign-rooms-java</name>
8-
<version>1.4.0</version>
8+
<version>1.4.1</version>
99
<url>https://developers.docusign.com</url>
1010
<description>The official DocuSign Rooms Java client provides libraries for Java application integration with DocuSign Rooms for real estate and mortgage workflows. It is recommended that you use this version of the library for new development.</description>
1111

src/main/java/com/docusign/rooms/api/SelectListFieldOption.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import com.fasterxml.jackson.annotation.JsonProperty;
66
import com.fasterxml.jackson.annotation.JsonCreator;
77
import com.fasterxml.jackson.annotation.JsonValue;
8-
import io.swagger.annotations.ApiModel;
9-
import io.swagger.annotations.ApiModelProperty;
8+
import io.swagger.v3.oas.annotations.media.Schema;
9+
1010

1111
/**
1212
* SelectListFieldOption.
@@ -27,7 +27,7 @@ public class SelectListFieldOption {
2727
* Get id.
2828
* @return id
2929
**/
30-
@ApiModelProperty(value = "")
30+
@Schema(example="null", description="")
3131
public String getId() {
3232
return id;
3333
}
@@ -36,7 +36,7 @@ public String getId() {
3636
* Get title.
3737
* @return title
3838
**/
39-
@ApiModelProperty(value = "")
39+
@Schema(example="null", description="")
4040
public String getTitle() {
4141
return title;
4242
}
@@ -45,7 +45,7 @@ public String getTitle() {
4545
* Get order.
4646
* @return order
4747
**/
48-
@ApiModelProperty(value = "")
48+
@Schema(example="null", description="")
4949
public Integer getOrder() {
5050
return order;
5151
}

src/main/java/com/docusign/rooms/client/ApiClient.java

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

9898
// Set default User-Agent.
99-
setUserAgent("/SDK/1.4.0/Java/");
99+
setUserAgent("/SDK/1.4.1/Java/");
100100

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

0 commit comments

Comments
 (0)