From 81bead8a0f7f4419235882728ca0733e3a94fceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BD=D0=B0=D0=B1?= Date: Thu, 26 Sep 2024 21:45:22 +0200 Subject: [PATCH] Bump version to 2.5.0 --- .github/workflows/msvc/test.py | 2 +- .github/workflows/msvc/version.rc | 2 +- Cargo.toml | 2 +- README.md | 2 +- appveyor.yml | 2 +- src/lib.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/msvc/test.py b/.github/workflows/msvc/test.py index 62ae5d0..4092f1a 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.4.3"} +assert fi_strings == {b"CompanyName": b"nabijaczleweli", b"ProductName": b"rust-embed-resource/example/version", b"ProductVersion": b"2.5.0"} diff --git a/.github/workflows/msvc/version.rc b/.github/workflows/msvc/version.rc index 04e6f78..031c0e1 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.4.3\0" + VALUE "ProductVersion", "2.5.0\0" END END diff --git a/Cargo.toml b/Cargo.toml index a4c9726..bc91dfb 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.3" +version = "2.5.0" authors = ["наб ", "Cat Plus Plus ", "Liigo ", diff --git a/README.md b/README.md index b8927f4..cebc2e8 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.4" +embed-resource = "2.5" ``` 2. In your project root directory, add a file named `build.rs` with the following: diff --git a/appveyor.yml b/appveyor.yml index 1f2587d..110327e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ image: - Visual Studio 2022 -version: 2.4.3-{build} +version: 2.5.0-{build} skip_tags: false diff --git a/src/lib.rs b/src/lib.rs index f6b98c9..b7e0a44 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,7 @@ //! build = "build.rs" //! //! [build-dependencies] -//! embed-resource = "2.4" +//! embed-resource = "2.5" //! ``` //! //! In `build.rs`: