Skip to content

Commit d4ffb12

Browse files
committed
release 1.1.6.1
1 parent 9d690f8 commit d4ffb12

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected void afterExecute(Runnable r, Throwable t);
8484
>
8585
> 4. 集成常用三方中间件内部线程池管理
8686
87-
**经过多个版本的迭代,目前最新版本 v1.1.5 具有以下特性**
87+
**经过多个版本的迭代,目前最新版本 v1.1.6.1 具有以下特性**
8888

8989
- **代码零侵入**:我们改变了线程池以往的使用姿势,所有配置均放在配置中心,服务启动时会从配置中心拉取配置生成线程池对象放到 Spring 容器中,使用时直接从 Spring 容器中获取,对业务代码零侵入
9090

dependencies/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<url>https://github.com/yanhom1314/dynamic-tp</url>
1313

1414
<properties>
15-
<revision>1.1.6</revision>
15+
<revision>1.1.6.1</revision>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717

1818
<lombok.version>1.18.24</lombok.version>

jvmti/jvmti-runtime/src/main/java/org/dromara/dynamictp/jvmti/JVMTI.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727

2828
/**
2929
* Use JVMTI technology to implement some things that Java code can't do.
30-
*
31-
* <p>Note: Only 64-bit CPU architecture is supported now !
30+
* Note: Only 64-bit CPU architecture is supported now !
3231
*
3332
* @author dragon-zhang
3433
* @since 1.1.4

jvmti/jvmti-runtime/src/main/java/org/dromara/dynamictp/jvmti/JVMTIUtil.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919

2020
/**
2121
* The type JVMTI util.
22-
* <p>
23-
* This file is copied from <a href="https://github.com/alibaba/arthas"></a>
24-
* <p>
22+
* This file is copied from <a href="https://github.com/alibaba/arthas">here</a>
23+
*
2524
* @author dragon-zhang
2625
* @since 1.1.4
2726
*/

jvmti/jvmti-runtime/src/main/java/org/dromara/dynamictp/jvmti/OSUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.util.Locale;
2222

2323
/**
24-
* This file is copied from <a href="https://github.com/alibaba/arthas"></a>
24+
* This file is copied from <a href="https://github.com/alibaba/arthas">here</a>
2525
*
2626
* @author dragon-zhang
2727
* @since 1.1.6

jvmti/jvmti-runtime/src/main/java/org/dromara/dynamictp/jvmti/PlatformEnum.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Enum of supported operating systems.
2222
* <p>
23-
* This file is copied from <a href="https://github.com/alibaba/arthas"></a>
23+
* This file is copied from <a href="https://github.com/alibaba/arthas">here</a>
2424
* <p>
2525
* @author dragon-zhang
2626
* @since 1.1.6

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<url>https://github.com/yanhom1314/dynamic-tp</url>
1414

1515
<properties>
16-
<revision>1.1.6</revision>
16+
<revision>1.1.6.1</revision>
1717

1818
<maven.compiler.source>8</maven.compiler.source>
1919
<maven.compiler.target>8</maven.compiler.target>

0 commit comments

Comments
 (0)