diff --git a/.github/workflows/msvc/test.py b/.github/workflows/msvc/test.py index 97db647..f5c639c 100755 --- a/.github/workflows/msvc/test.py +++ b/.github/workflows/msvc/test.py @@ -7,4 +7,4 @@ # must match version.rc print(f"version strings: {fi_strings}") -assert fi_strings == {b"CompanyName": b"nabijaczleweli", b"ProductName": b"rust-embed-resource/example/version", b"ProductVersion": b"2.3.0"} +assert fi_strings == {b"CompanyName": b"nabijaczleweli", b"ProductName": b"rust-embed-resource/example/version", b"ProductVersion": b"2.4.1"} diff --git a/.github/workflows/msvc/version.rc b/.github/workflows/msvc/version.rc index 7ab770a..86d6a1e 100644 --- a/.github/workflows/msvc/version.rc +++ b/.github/workflows/msvc/version.rc @@ -9,7 +9,7 @@ BEGIN // Strings must match test.py VALUE "CompanyName", "nabijaczleweli\0" VALUE "ProductName", "rust-embed-resource/example/version\0" - VALUE "ProductVersion", "2.3.0\0" + VALUE "ProductVersion", "2.4.1\0" END END diff --git a/Cargo.toml b/Cargo.toml index d11e0d6..8e047f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" # Remember to also update in README # Remember to also update in .github/workflows/msvc/test.py # Remember to also update in .github/workflows/msvc/version.rc -version = "2.4.0" +version = "2.4.1" authors = ["наб ", "Cat Plus Plus ", "Liigo ", diff --git a/README.md b/README.md index 9316f5a..b8927f4 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ The following steps are used to embed a manifest in your compiled rust .exe file 1. Add the following to your cargo.toml: ```toml [build-dependencies] -embed-resource = "2.3" +embed-resource = "2.4" ``` 2. In your project root directory, add a file named `build.rs` with the following: diff --git a/appveyor.yml b/appveyor.yml index 1ebdf37..d0f0759 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ image: - Visual Studio 2022 -version: 2.4.0-{build} +version: 2.4.1-{build} skip_tags: false diff --git a/src/lib.rs b/src/lib.rs index fb6da89..5f7da21 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,7 @@ //! build = "build.rs" //! //! [build-dependencies] -//! embed-resource = "2.3" +//! embed-resource = "2.4" //! ``` //! //! In `build.rs`: