Skip to content

Commit 257ee5f

Browse files
committed
chore: release v0.12.0
1 parent 3b31948 commit 257ee5f

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
[workspace]
2-
members = [
3-
"tools/inspect-windows"
4-
]
5-
61
[package]
72
name = "window-switcher"
8-
version = "0.11.0"
3+
version = "0.12.0"
94
edition = "2021"
105

116
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -44,3 +39,8 @@ embed-resource = "1.6.5"
4439
lto = true
4540
strip = true
4641
opt-level = "z"
42+
43+
[workspace]
44+
members = [
45+
"tools/inspect-windows"
46+
]

assets/app.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
1414
//
1515

1616
VS_VERSION_INFO VERSIONINFO
17-
FILEVERSION 0,11,0,0
17+
FILEVERSION 0,12,0,0
1818
FILEFLAGSMASK 0x3fL
1919
#ifdef _DEBUG
2020
FILEFLAGS 0x1L
@@ -34,7 +34,7 @@ BEGIN
3434
VALUE "LegalCopyright", "Copyright (C) 2023"
3535
VALUE "OriginalFilename", "window-switcher.exe"
3636
VALUE "ProductName", "Window Switcher"
37-
VALUE "ProductVersion", "0.11.0.0"
37+
VALUE "ProductVersion", "0.12.0.0"
3838
END
3939
END
4040
BLOCK "VarFileInfo"

src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1+
pub mod utils;
2+
#[macro_use]
3+
pub mod macros;
4+
#[macro_use]
5+
extern crate log;
6+
17
mod app;
28
mod config;
39
mod foregound;
410
mod keyboard;
511
mod startup;
612
mod trayicon;
713

8-
pub mod utils;
9-
#[macro_use]
10-
pub mod macros;
11-
#[macro_use]
12-
extern crate log;
13-
1414
pub use crate::app::start;
1515
pub use crate::config::Config;

0 commit comments

Comments
 (0)