Skip to content

Commit

Permalink
Merge pull request #1790 from espanso/dev
Browse files Browse the repository at this point in the history
Version 2.2.1
  • Loading branch information
federico-terzi committed Dec 17, 2023
2 parents 1821cc1 + 7661bd8 commit b421bcf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion espanso-detect/src/win32/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ impl Source for Win32Source {

fn eventloop(&self, event_callback: SourceCallback) -> Result<()> {
assert!(
self.handle.is_null(),
!self.handle.is_null(),
"Attempt to start Win32Source eventloop without initialization"
);

Expand Down
2 changes: 1 addition & 1 deletion espanso-ui/src/win32/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl UIEventLoop for Win32EventLoop {
// Make sure the run() method is called in the same thread as initialize()
if let Some(init_id) = self.init_thread_id.borrow() {
assert!(
!(init_id != &std::thread::current().id()),
init_id == &std::thread::current().id(),
"Win32EventLoop run() and initialize() methods should be called in the same thread"
);
}
Expand Down
2 changes: 1 addition & 1 deletion espanso/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "espanso"
version = "2.2.0"
version = "2.2.1"
authors = ["Federico Terzi <federicoterzi96@gmail.com>"]
license = "GPL-3.0"
description = "Cross-platform Text Expander written in Rust"
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: espanso
version: 2.2.0
version: 2.2.1
summary: A Cross-platform Text Expander written in Rust
description: |
espanso is a Cross-platform, Text Expander written in Rust.
Expand Down

0 comments on commit b421bcf

Please sign in to comment.