Skip to content

Commit

Permalink
release 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Feb 27, 2024
1 parent 2d62cf9 commit aa63192
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

env:
VERSION: "2.11"
VERSION: "2.12"

jobs:

Expand Down
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import subprocess

VERSION = "2.11"
VERSION = "2.12"
PROJECT = "PROJECT: https://github.com/jar-analyzer/jar-analyzer"


Expand Down
2 changes: 1 addition & 1 deletion build/start-full.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setlocal

rem set file name
set "jar-analyzer=jar-analyzer-2.11.jar"
set "jar-analyzer=jar-analyzer-2.12.jar"

rem env
set "command=wmic os get freephysicalmemory"
Expand Down
2 changes: 1 addition & 1 deletion build/start-system.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setlocal

rem set file name
set "jar-analyzer=jar-analyzer-2.11.jar"
set "jar-analyzer=jar-analyzer-2.12.jar"

rem env
set "command=wmic os get freephysicalmemory"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.n1ar4</groupId>
<artifactId>jar-analyzer</artifactId>
<version>2.11</version>
<version>2.12</version>

<packaging>jar</packaging>
<description>Jar Analyzer Project</description>
Expand Down
12 changes: 3 additions & 9 deletions release/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,11 @@ Use `Zulu JRE`

Steps:
- Run `check-version.bat` and update `pom.xml`
- Run `rasp/check-version.bat` and update `pom.xml`
- Check `me/n1ar4/jar/analyzer/starter/Const.java` version
- Check build bat/sh files
- Check `build/*.bat` files
- Check `pom.xml` version tag
- Check `build.py` VERSION
- Check `build.yml` VERSION
- Github build

Optional:
- Run `clean.bat`
- Run `agent/package.bat`
- Run `package.bat`
- Run `python build.py`
- Copy `JRE` to `embed` type
- Change `version.txt` on server
- Change `version.txt` on server
2 changes: 1 addition & 1 deletion src/main/java/me/n1ar4/jar/analyzer/starter/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public interface Const {
int GlobalASMOptions = ClassReader.SKIP_FRAMES | ClassReader.SKIP_DEBUG;
int AnalyzeASMOptions = ClassReader.EXPAND_FRAMES;
String app = "Jar Analyzer V2 - 4ra1n";
String version = "2.11";
String version = "2.12";
String checkUpdateUrl = "http://47.97.182.120/version.txt";
String authorUrl = "https://github.com/4ra1n";
String projectUrl = "https://github.com/jar-analyzer/jar-analyzer";
Expand Down

0 comments on commit aa63192

Please sign in to comment.