From 45fe9612f363cd7e990577174a11bce27d13592c Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Sun, 27 Mar 2022 20:17:20 +0200 Subject: [PATCH] chore(release): 1.2.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- bin/Cargo.toml | 2 +- debian/changelog | 8 ++++++++ justfile | 8 -------- plugins/Cargo.toml | 2 +- service/Cargo.toml | 6 +++--- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e4c4eb..499380a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1136,7 +1136,7 @@ dependencies = [ [[package]] name = "pop-launcher" -version = "1.1.1" +version = "1.2.0" dependencies = [ "const_format", "dirs 4.0.0", @@ -1150,7 +1150,7 @@ dependencies = [ [[package]] name = "pop-launcher-bin" -version = "1.1.1" +version = "1.2.0" dependencies = [ "pop-launcher-plugins", "pop-launcher-service", @@ -1161,7 +1161,7 @@ dependencies = [ [[package]] name = "pop-launcher-plugins" -version = "1.1.1" +version = "1.2.0" dependencies = [ "anyhow", "async-pidfd", @@ -1196,7 +1196,7 @@ dependencies = [ [[package]] name = "pop-launcher-service" -version = "1.1.1" +version = "1.2.0" dependencies = [ "anyhow", "async-oneshot", diff --git a/Cargo.toml b/Cargo.toml index 1e3a2d9..6f3379e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pop-launcher" -version = "1.1.1" +version = "1.2.0" license = "MPL-2.0" authors = ["Michael Aaron Murphy "] description = "Library for writing plugins and frontends for pop-launcher" diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 80145d4..546cbf0 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pop-launcher-bin" -version = "1.1.1" +version = "1.2.0" edition = "2018" license = "GPL-3.0-only" publish = false diff --git a/debian/changelog b/debian/changelog index fc7a37e..496bd3e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pop-launcher (1.2.0) impish; urgency=medium + + * Switch from smol-rs to tokio-rs + * Switch from isahc to reqwest + * Drop GTK dependency requirement + + -- Michael Aaron Murphy Sun, 27 Mar 2022 20:16:19 +0200 + pop-launcher (1.1.1) impish; urgency=medium * Calculator fix diff --git a/justfile b/justfile index 32f9195..201afad 100644 --- a/justfile +++ b/justfile @@ -72,14 +72,6 @@ install_scripts: cp -r ${script} {{scripts_dir}} done -# Increment version across workspace -release: - sed -i "s/^version.*/version = \"{{version}}\"/g" Cargo.toml - sed -i "s/^version.*/version = \"{{version}}\"/g" bin/Cargo.toml - sed -i "s/^version.*/version = \"{{version}}\"/g" plugins/Cargo.toml - sed -i "s/^version.*/version= \"{{version}}\"/g" service/Cargo.toml - cargo update - # Vendor Cargo dependencies locally vendor: mkdir -p .cargo diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml index 873edad..d7d7d32 100644 --- a/plugins/Cargo.toml +++ b/plugins/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pop-launcher-plugins" -version = "1.1.1" +version = "1.2.0" license = "GPL-3.0-only" authors = ["Michael Aaron Murphy "] edition = "2018" diff --git a/service/Cargo.toml b/service/Cargo.toml index c9ab1a3..9002a09 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pop-launcher-service" -version= "1.1.1" +version= "1.2.0" license = "MPL-2.0" edition = "2018" @@ -26,9 +26,9 @@ tracing-subscriber = { version = "0.3.9", features = ["fmt"] } flume = "0.10.12" [dependencies.tokio] -version = "1.17.0" +version= "1.17.0" features = ["io-std", "process", "rt"] [dependencies.tokio-stream] -version = "0.1.8" +version= "0.1.8" features = ["io-util"]