Skip to content

Commit

Permalink
Bump version to 2.2.0. Add @micolous to authors list
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed Jul 1, 2023
1 parent e83a9bf commit d906fb7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/msvc/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
2 changes: 1 addition & 1 deletion .github/workflows/msvc/version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ authors = ["наб <[email protected]>",
"Richard Markiewicz <[email protected]>",
"Emerson de Freitas Barcelos <[email protected]>",
"Li Keqing <[email protected]>",
"Alexis Bourget <[email protected]>"]
"Alexis Bourget <[email protected]>",
"Michael Farrell <[email protected]>"]
exclude = ["*.enc"]


Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -106,3 +106,4 @@ To all who support further development on Patreon, in particular:
* ThePhD
* Embark Studios
* Lars Strojny
* EvModder
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
- Visual Studio 2022

version: 2.1.1-{build}
version: 2.2.1-{build}

skip_tags: false

Expand Down
4 changes: 2 additions & 2 deletions rust-embed-resource.sublime-project
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
},
]
}
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//! build = "build.rs"
//!
//! [build-dependencies]
//! embed-resource = "2.1"
//! embed-resource = "2.2"
//! ```
//!
//! In `build.rs`:
Expand Down Expand Up @@ -107,6 +107,7 @@
//! * ThePhD
//! * Embark Studios
//! * Lars Strojny
//! * EvModder


#[cfg(any(not(target_os = "windows"), all(target_os = "windows", target_env = "msvc")))]
Expand Down

0 comments on commit d906fb7

Please sign in to comment.