Skip to content

Commit

Permalink
Merge pull request #207 from plivo/VT-3980
Browse files Browse the repository at this point in the history
Vt 3980
  • Loading branch information
huzaif-plivo authored Feb 23, 2022
2 parents 5bc1125 + f4a4040 commit d3699d5
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [5.9.2](https://github.com/plivo/plivo-java/tree/v5.9.2) (2022-02-22)
**ResponseFix - memberAddressAdded**

## [5.9.1](https://github.com/plivo/plivo-java/tree/v5.9.1) (2022-02-04)
**BugFix - MessageCreate**
- Source and Destination number validation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you are using Maven, use the following XML to include the Plivo SDK as a depe
<dependency>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.9.1</version>
<version>5.9.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Written manually.

version=5.9.1
version=5.9.2
groupId=com.plivo
artifactId=plivo-java
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.9.1</version>
<version>5.9.2</version>
<name>plivo-java</name>
<description>A Java SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML</description>
<licenses>
Expand Down Expand Up @@ -77,4 +77,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class MultiPartyCallParticipant extends SecondaryResource {
private Boolean hold;
private String joinTime;
private String memberId;
private String memberAddress;
private String mpcUuid;
private Boolean mute;
private String resourceUri;
Expand Down Expand Up @@ -128,6 +129,7 @@ public String getJoinTime() {
public String getMemberId() {
return memberId;
}
public String getmemberAddress() { return memberAddress; }

public String getMpcUuid() {
return mpcUuid;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/com/plivo/api/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.9.1
5.9.2
1 change: 1 addition & 0 deletions src/test/resources/com/plivo/api/mpcParticipantsList.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"exit_time": "2020-07-09 07:25:07+00:00",
"hold": null,
"join_time": "2020-07-09 07:24:37+00:00",
"member_address": "sip:[email protected]",
"member_id": "49",
"mpc_uuid": "18905d56-79c8-41d4-a840-25feff71070e",
"mute": null,
Expand Down

0 comments on commit d3699d5

Please sign in to comment.