chore(release): 1.2.0

This commit is contained in:
Michael Aaron Murphy 2022-03-27 20:17:20 +02:00 committed by Michael Murphy
parent ade8dc1950
commit 45fe9612f3
7 changed files with 18 additions and 18 deletions

8
Cargo.lock generated
View file

@ -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",

View file

@ -1,6 +1,6 @@
[package]
name = "pop-launcher"
version = "1.1.1"
version = "1.2.0"
license = "MPL-2.0"
authors = ["Michael Aaron Murphy <mmstick@pm.me>"]
description = "Library for writing plugins and frontends for pop-launcher"

View file

@ -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

8
debian/changelog vendored
View file

@ -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 <mmstick@pm.me> Sun, 27 Mar 2022 20:16:19 +0200
pop-launcher (1.1.1) impish; urgency=medium
* Calculator fix

View file

@ -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

View file

@ -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 <mmstick@pm.me>"]
edition = "2018"

View file

@ -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"]