release 1.2.0

This commit is contained in:
4ra1n
2024-12-13 02:12:25 +08:00
parent c89d4cd6d0
commit 6d981e63fb
5 changed files with 8 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ on:
workflow_dispatch:
env:
VERSION: "1.1.1"
VERSION: "1.2.0"
jobs:

View File

@@ -119,7 +119,7 @@ public class Test {
<dependency>
<groupId>com.github.jar-analyzer</groupId>
<artifactId>class-obf</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
</dependency>
</dependencies>
```

View File

@@ -6,7 +6,7 @@
<groupId>me.n1ar4</groupId>
<artifactId>class-obf</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
<packaging>jar</packaging>
<description>Class Obfuscator Project</description>

View File

@@ -7,5 +7,7 @@ Steps:
3. change `me/n1ar4/clazz/obfuscator/Const` version
4. change `.github/workflows/build.yml` version
5. check `CHANGELOG.MD` file
6. actions build
7. release
6. check `README.md` api doc
7. actions build
8. release
9. update `jitpack`

View File

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