Skip to content

Commit

Permalink
Bump version to 2.3.0. Add @oko to authors list
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed Aug 27, 2023
1 parent 25dc5fb commit 40025c4
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 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.2.0"}
assert fi_strings == {b"CompanyName": b"nabijaczleweli", b"ProductName": b"rust-embed-resource/example/version", b"ProductVersion": b"2.3.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.2.0\0"
VALUE "ProductVersion", "2.3.0\0"
END
END

Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0"
version = "2.3.0"
authors = ["наб <nabijaczleweli@nabijaczleweli.xyz>",
"Cat Plus Plus <piotrlegnica@piotrl.pl>",
"Liigo <liigo@qq.com>",
Expand All @@ -31,7 +31,8 @@ authors = ["наб <nabijaczleweli@nabijaczleweli.xyz>",
"Emerson de Freitas Barcelos <emersonfxbx@gmail.com>",
"Li Keqing <me@kaze.ai>",
"Alexis Bourget <alexis.bourget@gmail.com>",
"Michael Farrell <micolous+git@gmail.com>"]
"Michael Farrell <micolous+git@gmail.com>",
"Jacob Okamoto <oko@oko.io>"]
exclude = ["*.enc"]


Expand Down
2 changes: 1 addition & 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.2"
embed-resource = "2.3"
```

2. In your project root directory, add a file named `build.rs` with the following:
Expand Down
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.2.1-{build}
version: 2.3.0-{build}

skip_tags: false

Expand Down
2 changes: 1 addition & 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.2"
//! embed-resource = "2.3"
//! ```
//!
//! In `build.rs`:
Expand Down

0 comments on commit 40025c4

Please sign in to comment.