diff --git a/.github/workflows/msvc/test.py b/.github/workflows/msvc/test.py index d9075c5..b15a417 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.1.1"} +assert fi_strings == {b"CompanyName": b"nabijaczleweli", b"ProductName": b"rust-embed-resource/example/version", b"ProductVersion": b"2.2.0"} diff --git a/.github/workflows/msvc/version.rc b/.github/workflows/msvc/version.rc index 47915ad..debf3e1 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.1.1\0" + VALUE "ProductVersion", "2.2.0\0" END END diff --git a/Cargo.toml b/Cargo.toml index 95edc54..0f97561 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,8 @@ authors = ["наб ", "Richard Markiewicz ", "Emerson de Freitas Barcelos ", "Li Keqing ", - "Alexis Bourget "] + "Alexis Bourget ", + "Michael Farrell "] exclude = ["*.enc"] diff --git a/README.md b/README.md index 98f2e8c..10889dc 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.1" +embed-resource = "2.2" ``` 2. In your project root directory, add a file named `build.rs` with the following: @@ -106,3 +106,4 @@ To all who support further development on Patreon, in particular: * ThePhD * Embark Studios * Lars Strojny + * EvModder diff --git a/appveyor.yml b/appveyor.yml index 24a893d..facefed 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ image: - Visual Studio 2022 -version: 2.1.1-{build} +version: 2.2.1-{build} skip_tags: false diff --git a/rust-embed-resource.sublime-project b/rust-embed-resource.sublime-project index d4b2801..eb86218 100644 --- a/rust-embed-resource.sublime-project +++ b/rust-embed-resource.sublime-project @@ -29,8 +29,8 @@ "follow_symlinks": true, "name": "Build scripts", "path": ".", - "file_include_patterns": ["Cargo.*", "*.yml", "build.rs"], - "folder_exclude_patterns": ["*"] + "file_include_patterns": ["Cargo.*", "*.yml", "build.rs", ".github"], + "folder_exclude_patterns": [".git", "target", "src"] }, ] } diff --git a/src/lib.rs b/src/lib.rs index d44b6d7..3eb49a6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,7 @@ //! build = "build.rs" //! //! [build-dependencies] -//! embed-resource = "2.1" +//! embed-resource = "2.2" //! ``` //! //! In `build.rs`: @@ -107,6 +107,7 @@ //! * ThePhD //! * Embark Studios //! * Lars Strojny +//! * EvModder #[cfg(any(not(target_os = "windows"), all(target_os = "windows", target_env = "msvc")))]