Skip to content

Commit

Permalink
update version to 5.0.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
wicked-tc130 committed May 11, 2024
1 parent e0c33ea commit d62a178
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
## 1. 集成
引入sdk包
```xml
<!--以5.0.8版本为例-->
<!--以5.0.9版本为例-->
<dependencies>
<!-- jiguang-sdk -->
<dependency>
<groupId>io.github.jpush</groupId>
<artifactId>jiguang-sdk</artifactId>
<version>5.0.8</version>
<version>5.0.9</version>
</dependency>
</dependencies>
```
Expand Down
4 changes: 2 additions & 2 deletions example-for-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>io.github.jpush</groupId>
<artifactId>example-for-spring</artifactId>
<version>5.0.8</version>
<version>5.0.9</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand All @@ -26,7 +26,7 @@
<dependency>
<groupId>io.github.jpush</groupId>
<artifactId>jiguang-sdk</artifactId>
<version>5.0.8</version>
<version>5.0.9</version>
</dependency>
<!-- lombok -->
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions jiguang-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<parent>
<groupId>io.github.jpush</groupId>
<artifactId>jiguang-sdk-java</artifactId>
<version>5.0.8</version>
<version>5.0.9</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>io.github.jpush</groupId>
<artifactId>jiguang-sdk</artifactId>
<version>5.0.8</version>
<version>5.0.9</version>
<packaging>jar</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package cn.jiguang.sdk.bean.device;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

Expand All @@ -9,20 +10,25 @@
public class DeviceSetParam {

@JsonProperty("tags")
@JsonInclude(JsonInclude.Include.NON_NULL)
private Tags tags;

@JsonProperty("alias")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String alias;

@JsonProperty("mobile")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String mobile;

@Data
public static class Tags {
@JsonProperty("add")
@JsonInclude(JsonInclude.Include.NON_NULL)
private List<String> add;

@JsonProperty("remove")
@JsonInclude(JsonInclude.Include.NON_NULL)
private List<String> remove;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ReceivedDetailGetResult {
@JsonProperty("ios_msg_received")
private Long iosMsgReceived;

@JsonProperty("live_acivity_send")
@JsonProperty("live_acivity_sent")
private Long liveAcivitySent;

@JsonProperty("live_acivity_received")
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.jpush</groupId>
<artifactId>jiguang-sdk-java</artifactId>
<version>5.0.8</version>
<version>5.0.9</version>
<packaging>pom</packaging>

<name>Jiguang SDK For Rest Api</name>
Expand Down

0 comments on commit d62a178

Please sign in to comment.