release 1.9.0
Some checks failed
leak check / check (push) Has been cancelled
maven check / check (push) Has been cancelled
truffle check / test (push) Has been cancelled

This commit is contained in:
4ra1n
2025-10-14 21:10:42 +08:00
parent 86b405cfe6
commit 9ebffa3c4f
5 changed files with 6 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ on:
workflow_dispatch:
env:
VERSION: "1.8.0"
VERSION: "1.9.0"
jobs:

View File

@@ -2,6 +2,8 @@
## 1.9.0
注意:配置文件有变动
更新日志:
- [功能] 支持 `enableInvokeDynamic` 配置使 `IDEA` 报错

View File

@@ -68,7 +68,7 @@
<dependency>
<groupId>io.github.4ra1n</groupId>
<artifactId>class-obf</artifactId>
<version>1.8.0</version>
<version>1.9.0</version>
</dependency>
```

View File

@@ -6,7 +6,7 @@
<groupId>io.github.4ra1n</groupId>
<artifactId>class-obf</artifactId>
<version>1.8.0</version>
<version>1.9.0</version>
<packaging>jar</packaging>
<description>
A comprehensive Java class obfuscation tool that supports

View File

@@ -8,7 +8,7 @@ import java.nio.file.Path;
import java.nio.file.Paths;
public interface Const {
String VERSION = "1.8.0";
String VERSION = "1.9.0";
String PROJECT_URL = "https://github.com/4ra1n/class-obf";
Path configPath = Paths.get("config.yaml");
Path TEMP_PATH = Paths.get("class-obf-temp.class");