From ba0e84885d380ce59a51fa71165fe8f98b157590 Mon Sep 17 00:00:00 2001 From: Cyril Levis Date: Fri, 7 Jul 2023 20:45:19 +0200 Subject: [PATCH] chore: release 0.3.6 nothing change, updating version everywhere --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- README.md | 18 +++++++++++------- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d6e02b..61ed191 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,7 +416,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hyprland" -version = "0.3.4" +version = "0.3.6" dependencies = [ "async-net", "async-std", @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "hyprland-macros" -version = "0.3.4" +version = "0.3.6" dependencies = [ "quote", "syn 2.0.18", diff --git a/Cargo.toml b/Cargo.toml index 3a4da82..14b1b04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ lto = true members = ["hyprland-macros"] [workspace.package] -version = "0.3.4" +version = "0.3.6" license = "GPL-3.0-or-later" repository = "https://github.com/hyprland-community/hyprland-rs" keywords = ["hyprland", "ipc", "hypr", "wayland", "linux"] diff --git a/README.md b/README.md index 039834c..7ab888b 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ An unofficial rust wrapper for Hyprland's IPC ## Disclaimer + If something doesn't work, doesn't matter what, make sure you are on the latest version (or commit) of Hyprland before making an issue! @@ -22,14 +23,16 @@ Let's get started with Hyprland-rs! Add the code below to the dependencies section of your Cargo.toml file! ```toml -hyprland = "0.3.4" +hyprland = "0.3.6" ``` ### Reading the docs + Hyprland-rs has a ton of types (and some really long ones)! Its important you know how the ones you will be using work! The docs can be found at [docs.rs/hyprland](https://docs.rs/hyprland) #### Master version + If Hyprland-rs is broken (or other reason) and is taking too long for a release to come out, you can use the master branch in Cargo (will not allow the crate to be published to `crates.io`): @@ -40,12 +43,13 @@ hyprland = { git = "https://github.com/hyprland-community/hyprland-rs", branch = ### What this crate provides This crate provides 6 modules (+1 for shared things) - - `data` for getting information on the compositor - - `event_listener` which provides the `EventListener` struct for listening for events - - `dispatch` for calling dispatchers - - `keyword` for dealing with config option (aka keywords) - - `config::binds` for changing binds (in future `config` might have config generation) - - `ctl` for calling hyprctl commands + +- `data` for getting information on the compositor +- `event_listener` which provides the `EventListener` struct for listening for events +- `dispatch` for calling dispatchers +- `keyword` for dealing with config option (aka keywords) +- `config::binds` for changing binds (in future `config` might have config generation) +- `ctl` for calling hyprctl commands ## Example Usage