diff --git a/CHANGELOG.md b/CHANGELOG.md index e454078..589ceb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] -## [0.4.0] +## [0.4.1] ### Changed diff --git a/src/windows.rs b/src/windows.rs index 93c4256..3047898 100644 --- a/src/windows.rs +++ b/src/windows.rs @@ -1,12 +1,12 @@ use std::io; use windows::core::HSTRING; -use windows::System::Threading::{ - CreateMutexW, ReleaseMutex, WaitForSingleObject, INFINITE, -}; use windows::Win32::Foundation::{ CloseHandle, HANDLE, WAIT_ABANDONED, WAIT_OBJECT_0, WAIT_TIMEOUT, }; +use windows::Win32::System::Threading::{ + CreateMutexW, ReleaseMutex, WaitForSingleObject, INFINITE, +}; use crate::error::*;