🔖 0.1.2

This commit is contained in:
jarvis2f 2024-12-23 14:35:57 +08:00
parent bba6bcd778
commit 00f8b55351
5 changed files with 5 additions and 5 deletions

View file

@ -1 +1 @@
0.1.1 0.1.2

View file

@ -4,7 +4,7 @@ plugins {
} }
group = 'telegram.files' group = 'telegram.files'
version = '0.1.1' version = '0.1.2'
repositories { repositories {
mavenCentral() mavenCentral()

View file

@ -7,7 +7,7 @@ import io.vertx.core.Vertx;
public class Start { public class Start {
private static final Log log = LogFactory.get(); 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) { public static void main(String[] args) {
Vertx vertx = Vertx.vertx(); Vertx vertx = Vertx.vertx();

View file

@ -55,7 +55,7 @@ def git_commit_and_tag(version, message):
"""执行 Git 提交并创建标签""" """执行 Git 提交并创建标签"""
try: try:
# 添加修改到 Git 暂存区 # 添加修改到 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) subprocess.run(["git", "commit", "-m", message], check=True)
# 创建标签 # 创建标签

View file

@ -1,6 +1,6 @@
{ {
"name": "telegram-files-web", "name": "telegram-files-web",
"version": "0.1.1", "version": "0.1.2",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {