Skip to content

Commit eef4d8f

Browse files
committed
bump version to 1.9.0-beta1
1 parent 69853f2 commit eef4d8f

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.github/workflows/code-check.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ name: Build Agent and Upload To OSS
55

66
on:
77
push:
8-
branches: [ beta ]
8+
branches:
9+
- main
10+
- beta
911
pull_request:
10-
branches: [ beta ]
12+
branches:
13+
- main
14+
- beta
1115
paths-ignore:
1216
- '.github/**'
1317
- 'changes/**'

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ main ]
16+
branches:
17+
- main
18+
- beta
1719
paths-ignore:
1820
- '.github/**'
1921
- 'changes/**'
@@ -24,7 +26,9 @@ on:
2426
- 'LICENSE'
2527
- '.gitignore'
2628
pull_request:
27-
branches: [ main ]
29+
branches:
30+
- main
31+
- beta
2832
paths-ignore:
2933
- '.github/**'
3034
- 'changes/**'

dongtai-common/src/main/java/io/dongtai/iast/common/constants/AgentConstant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package io.dongtai.iast.common.constants;
22

33
public class AgentConstant {
4-
public static final String VERSION_VALUE = "v1.8.2-beta3";
4+
public static final String VERSION_VALUE = "v1.9.0-beta1";
55
public static final String LANGUAGE = "JAVA";
66
public static final String THREAD_NAME_PREFIX = "DongTai-IAST-";
77
public static final String THREAD_NAME_PREFIX_CORE = "DongTai-IAST-Core-";

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<properties>
7-
<revision>1.8.2-beta3</revision>
7+
<revision>1.9.0-beta1</revision>
88
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
99
<shade-prefix>io.dongtai.iast.thirdparty</shade-prefix>
1010

0 commit comments

Comments
 (0)