Skip to content

Commit

Permalink
imp: version 4.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
helyho committed Sep 22, 2020
1 parent 309a8e8 commit 07e4bae
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion All/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.voovan</groupId>
<artifactId>voovan-parent</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion Common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.voovan</groupId>
<artifactId>voovan-parent</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion Common/src/main/java/org/voovan/Global.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@ public static HashWheelTimer getHashWheelTimer(){
* @return Voovan 版本号
*/
public static String getVersion(){
return "4.3.9";
return "4.3.8";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class EventRunnerGroup {
* 构造方法
* @param threadPoolExecutor 用于分发任务执行的线程池
* @param size 容纳事件执行器的数量
* @param steal 是否允许任务窃取
* @param isSteal 是否允许任务窃取
* @param attachmentSupplier 事件执行器的附属对象构造器
*/
public EventRunnerGroup(ThreadPoolExecutor threadPoolExecutor, int size, boolean isSteal, Function<EventRunner, Object> attachmentSupplier) {
Expand Down Expand Up @@ -118,7 +118,7 @@ public EventTask stealTask() {
* 静态构造方法
* @param groupName 事件执行器名称
* @param size 容纳事件执行器的数量
* @param steal 是否允许任务窃取
* @param isSteal 是否允许任务窃取
* @param threadPriority 线程优先级
* @param attachmentSupplier 事件执行器的附属对象构造器
* @return 事件执行管理器
Expand Down
2 changes: 1 addition & 1 deletion Database/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.voovan</groupId>
<artifactId>voovan-parent</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion Network/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.voovan</groupId>
<artifactId>voovan-parent</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Voovan 是一个高性能异步网络框架和WEB服务器框架,同时支持HTT
<dependency>
<groupId>org.voovan</groupId>
<artifactId>voovan-framework</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion Web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.voovan</groupId>
<artifactId>voovan-parent</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion build_env.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
VOOVAN_VERSION=4.3.9
VOOVAN_VERSION=4.3.8

jlink --no-header-files --no-man-pages --compress=2 --strip-debug --module-path $JAVA_HOME/jmods \
--add-modules java.base,java.compiler,java.instrument,java.management,java.sql,jdk.attach,jdk.unsupported \
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.voovan</groupId>
<artifactId>voovan-parent</artifactId>
<version>4.3.9</version>
<version>4.3.8</version>
<packaging>pom</packaging>
<name>Voovan-parent</name>
<url>https://git.oschina.net/helyho/Voovan</url>
Expand Down

0 comments on commit 07e4bae

Please sign in to comment.