bump 1.2.0

This commit is contained in:
shenjack 2024-01-25 21:32:23 +08:00
parent a63604afe3
commit 6e74bd6e01
Signed by: shenjack
GPG Key ID: 7B1134A979775551
4 changed files with 5 additions and 4 deletions

3
.github/main.yml vendored
View File

@ -14,7 +14,8 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
os: [macos-latest, ubuntu-latest, windows-latest] # os: [macos-latest, ubuntu-latest, windows-latest]
os: [windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}

2
Cargo.lock generated
View File

@ -4,7 +4,7 @@ version = 3
[[package]] [[package]]
name = "call" name = "call"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"winapi", "winapi",
"winres", "winres",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "call" name = "call"
version = "1.1.0" version = "1.2.0"
description = "一个简单的用于不带控制台/带控制台调用其他程序的包装器" description = "一个简单的用于不带控制台/带控制台调用其他程序的包装器"
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View File

@ -12,7 +12,7 @@ fn main() {
.set("CompanyName", "TSW (shenjack's workshop)") .set("CompanyName", "TSW (shenjack's workshop)")
.set("Comments", "一个简单的包装器") .set("Comments", "一个简单的包装器")
.set("InternalName", "caller.exe") .set("InternalName", "caller.exe")
.set("ProductVersion", "1.1.0.0") .set("ProductVersion", "1.2.0.0")
.set_language(winapi::um::winnt::MAKELANGID( .set_language(winapi::um::winnt::MAKELANGID(
winapi::um::winnt::LANG_CHINESE_SIMPLIFIED, winapi::um::winnt::LANG_CHINESE_SIMPLIFIED,
winapi::um::winnt::SUBLANG_CHINESE_SIMPLIFIED, winapi::um::winnt::SUBLANG_CHINESE_SIMPLIFIED,