🔖 0.1.2
This commit is contained in:
parent
bba6bcd778
commit
00f8b55351
5 changed files with 5 additions and 5 deletions
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
0.1.1
|
||||
0.1.2
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = 'telegram.files'
|
||||
version = '0.1.1'
|
||||
version = '0.1.2'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import io.vertx.core.Vertx;
|
|||
public class Start {
|
||||
private static final Log log = LogFactory.get();
|
||||
|
||||
public static final String VERSION = "0.1.1";
|
||||
public static final String VERSION = "0.1.2";
|
||||
|
||||
public static void main(String[] args) {
|
||||
Vertx vertx = Vertx.vertx();
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ def git_commit_and_tag(version, message):
|
|||
"""执行 Git 提交并创建标签"""
|
||||
try:
|
||||
# 添加修改到 Git 暂存区
|
||||
subprocess.run(["git", "add", VERSION_FILE, BUILD_GRADLE_FILE, PACKAGE_JSON_FILE], check=True)
|
||||
subprocess.run(["git", "add", VERSION_FILE, BUILD_GRADLE_FILE, JAVA_VERSION_FILE, PACKAGE_JSON_FILE], check=True)
|
||||
# 提交修改
|
||||
subprocess.run(["git", "commit", "-m", message], check=True)
|
||||
# 创建标签
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "telegram-files-web",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue