Skip to content

Commit 1810051

Browse files
committed
update v0.3.1: vc-ltl(5.1.1-Beta1) yy-thunks(1.0.10-Beta8)
1 parent 2b2e3b3 commit 1810051

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

thunk-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "thunk-rs"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
authors = ["felixmaker"]
6-
description = "Thunk the Rust program to support old Windows platforms!"
6+
description = "Thunk the Rust program to support Windows XP, Vista and more!"
77
license = "Apache-2.0 OR MIT"
88
keywords = ["build-dependencies"]
99
readme = "README.md"

thunk-rs/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ Then, your program should run on Windows XP.
3737
- vc_ltl_only: Enables VC-LTL5 to make the final executable run without VC runtime installed.
3838
- lib: Enables this when compiling a library.
3939
- subsystem_windows: Enables this when you want to hide console.
40+
41+
## Test Status
42+
43+
- VC-LTL5: 5.1.1-Beta1
44+
- YY-Thunks: 1.0.10-Beta8

thunk-rs/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
use std::{env, path::PathBuf, process::Command};
44

5-
const VC_LTL_VERSION: &'static str = "5.0.10-Beta2";
6-
const YY_THUNKS_VERSION: &'static str = "1.0.10-Beta7";
5+
const VC_LTL_VERSION: &'static str = "5.1.1-Beta1";
6+
const YY_THUNKS_VERSION: &'static str = "1.0.10-Beta8";
77

88
/// This function should be call in build.rs.
99
pub fn thunk() {

0 commit comments

Comments
 (0)