Skip to content

Commit 8d3080f

Browse files
committed
release 3.7.0
1 parent fa8e539 commit 8d3080f

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM openjdk:8-jdk-alpine
22

3-
ARG ARTHAS_VERSION="3.6.9"
3+
ARG ARTHAS_VERSION="3.7.0"
44
ARG MIRROR=false
55

66
ENV MAVEN_HOST=https://repo1.maven.org/maven2 \

Dockerfile-No-Jdk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine
22

3-
ARG ARTHAS_VERSION="3.6.9"
3+
ARG ARTHAS_VERSION="3.7.0"
44
ARG MIRROR=false
55

66
ENV MAVEN_HOST=https://repo1.maven.org/maven2 \

bin/as.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
# program : Arthas
1010
# author : Core Engine @ Taobao.com
11-
# date : 2023-05-09
11+
# date : 2023-08-02
1212

1313
# current arthas script version
14-
ARTHAS_SCRIPT_VERSION=3.6.9
14+
ARTHAS_SCRIPT_VERSION=3.7.0
1515

1616
# SYNOPSIS
1717
# rreadlink <fileOrDirPath>
@@ -475,7 +475,7 @@ EXAMPLES:
475475
./as.sh --stat-url 'http://192.168.10.11:8080/api/stat'
476476
./as.sh -c 'sysprop; thread' <pid>
477477
./as.sh -f batch.as <pid>
478-
./as.sh --use-version 3.6.9
478+
./as.sh --use-version 3.7.0
479479
./as.sh --session-timeout 3600
480480
./as.sh --attach-only
481481
./as.sh --disabled-commands stop,dump

boot/src/main/java/com/taobao/arthas/boot/Bootstrap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
+ " java -jar arthas-boot.jar --stat-url 'http://192.168.10.11:8080/api/stat'\n"
5454
+ " java -jar arthas-boot.jar -c 'sysprop; thread' <pid>\n"
5555
+ " java -jar arthas-boot.jar -f batch.as <pid>\n"
56-
+ " java -jar arthas-boot.jar --use-version 3.6.9\n"
56+
+ " java -jar arthas-boot.jar --use-version 3.7.0\n"
5757
+ " java -jar arthas-boot.jar --versions\n"
5858
+ " java -jar arthas-boot.jar --select math-game\n"
5959
+ " java -jar arthas-boot.jar --session-timeout 3600\n" + " java -jar arthas-boot.jar --attach-only\n"

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<parent>
@@ -20,7 +21,7 @@
2021
<connection>scm:git:git@github.com:alibaba/arthas.git</connection>
2122
<developerConnection>scm:git:git@github.com:alibaba/arthas.git</developerConnection>
2223
<url>https://github.com/alibaba/arthas</url>
23-
<tag>HEAD</tag>
24+
<tag>HEAD</tag>
2425
</scm>
2526

2627
<developers>
@@ -77,7 +78,7 @@
7778
</modules>
7879

7980
<properties>
80-
<revision>3.6.9</revision>
81+
<revision>3.7.0</revision>
8182
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8283
<maven.compiler.target>1.6</maven.compiler.target>
8384
<maven.compiler.source>1.6</maven.compiler.source>
@@ -448,7 +449,7 @@
448449
<artifactId>flatten-maven-plugin</artifactId>
449450
<version>1.2.2</version>
450451
<configuration>
451-
<flattenMode>minimum</flattenMode>
452+
<flattenMode>minimum</flattenMode>
452453
</configuration>
453454
<executions>
454455
<execution>

0 commit comments

Comments
 (0)