From b00c9e283b23e670815e7ce8d92af260ed1c7894 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Dec 2022 03:05:44 +0200 Subject: [PATCH] Apply Version Updates From Current Changes (#27) Co-authored-by: amrbashir --- .changes/initial-release.md | 5 ----- CHANGELOG.md | 6 ++++++ Cargo.toml | 26 +++++++++++++------------- 3 files changed, 19 insertions(+), 18 deletions(-) delete mode 100644 .changes/initial-release.md create mode 100644 CHANGELOG.md diff --git a/.changes/initial-release.md b/.changes/initial-release.md deleted file mode 100644 index efbd460..0000000 --- a/.changes/initial-release.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "minor" ---- - -Initial Release. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bd6c003 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# Changelog + +## \[0.1.0] + +- Initial Release. + - [0309d10](https://www.github.com/tauri-apps/muda/commit/0309d101b16663ce67b518f8aa1d2c4af0de6dee) chore: prepare for first release on 2022-12-05 diff --git a/Cargo.toml b/Cargo.toml index c4d9425..06966d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "muda" -version = "0.0.0" +version = "0.1.0" description = "Menu Utilities for Desktop Applications" edition = "2021" -keywords = ["windowing", "menu"] +keywords = [ "windowing", "menu" ] license = "Apache-2.0 OR MIT" readme = "README.md" repository = "https://github.com/amrbashir/muda" documentation = "https://docs.rs/muda" -categories = ["gui"] +categories = [ "gui" ] [dependencies] crossbeam-channel = "0.5" @@ -16,23 +16,23 @@ keyboard-types = "0.6" once_cell = "1" thiserror = "1.0.37" -[target.'cfg(target_os = "windows")'.dependencies.windows-sys] +[target."cfg(target_os = \"windows\")".dependencies.windows-sys] version = "0.42" features = [ - "Win32_UI_WindowsAndMessaging", - "Win32_Foundation", - "Win32_Graphics_Gdi", - "Win32_UI_Shell", - "Win32_Globalization", - "Win32_UI_Input_KeyboardAndMouse", + "Win32_UI_WindowsAndMessaging", + "Win32_Foundation", + "Win32_Graphics_Gdi", + "Win32_UI_Shell", + "Win32_Globalization", + "Win32_UI_Input_KeyboardAndMouse" ] -[target.'cfg(target_os = "linux")'.dependencies] +[target."cfg(target_os = \"linux\")".dependencies] gdk = "0.15" -gtk = { version = "0.15", features = ["v3_22"] } +gtk = { version = "0.15", features = [ "v3_22" ] } libxdo = "0.6.0" -[target.'cfg(target_os = "macos")'.dependencies] +[target."cfg(target_os = \"macos\")".dependencies] cocoa = "0.24" objc = "0.2"