Skip to content

Commit

Permalink
release v.0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kcaverly committed Jan 18, 2023
1 parent df75da2 commit f2e6ca5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "peaches"
version = "0.4.4"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
rm -rf ~/.local/bin/peaches

# Get Latest Release from Github
wget https://github.com/KCaverly/peaches/releases/download/v0.4.4/peaches --no-check-certificate -P ~/.local/bin/
wget https://github.com/KCaverly/peaches/releases/download/v0.4.5/peaches --no-check-certificate -P ~/.local/bin/
chmod +x ~/.local/bin/peaches
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ use docker::DockerCommand;
use notes::NotesCommand;
use ssh::SSHCommand;
use std::process::exit;
use std::process::{Command, Stdio};
use std::str;
use tasks::TasksCommand;
use std::process::{Stdio,Command};

#[derive(Debug, Parser)] // requires `derive` feature
#[command(name = "peaches")]
Expand Down

0 comments on commit f2e6ca5

Please sign in to comment.