Skip to content

Commit

Permalink
1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzihaogithub committed Dec 11, 2022
1 parent 4907308 commit e715bba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sse协议的后端API, 比websocket轻量的实时通信,
<dependency>
<groupId>com.github.wangzihaogithub</groupId>
<artifactId>sse-server</artifactId>
<version>1.1.7</version>
<version>1.1.8</version>
</dependency>
2. 配置业务逻辑 (后端)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.wangzihaogithub</groupId>
<artifactId>sse-server</artifactId>
<version>1.1.7</version>
<version>1.1.8</version>
<name>sse-server</name>
<description>Sse server for Spring Boot</description>
<url>https://github.com/wangzihaogithub/sse-server.git</url>
Expand Down Expand Up @@ -94,7 +94,7 @@
<connection>scm:git:https://github.com/wangzihaogithub/sse-server.git</connection>
<developerConnection>scm:git:[email protected]:wangzihaogithub/sse-server.git</developerConnection>
<url>[email protected]:wangzihaogithub/sse-server.git</url>
<tag>v1.1.7</tag>
<tag>v1.1.8</tag>
</scm>

<!-- 开发者信息 -->
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/sseserver/local/SseEmitter.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @author wangzihaogithub 2022-11-12
*/
public class SseEmitter<ACCESS_USER> extends org.springframework.web.servlet.mvc.method.annotation.SseEmitter implements MessageRepository.Query {
public static final String VERSION = "1.1.7";
public static final String VERSION = "1.1.8";
public static final String EVENT_ADD_LISTENER = "addListener";
public static final String EVENT_REMOVE_LISTENER = "removeListener";

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/sse.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* <dependency>
* <groupId>com.github.wangzihaogithub</groupId>
* <artifactId>sse-server</artifactId>
* <version>1.1.7</version>
* <version>1.1.8</version>
* </dependency>
*/
class Sse {
static version = '1.1.7'
static version = '1.1.8'
static DEFAULT_OPTIONS = {
url: '/api/sse',
keepaliveTime: 900000,
Expand Down

0 comments on commit e715bba

Please sign in to comment.