Skip to content

Commit

Permalink
Cut v0.2.0 now that ureq has been updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimo414 committed Feb 21, 2021
1 parent 8f982e6 commit 56fbcbf
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 62 deletions.
89 changes: 42 additions & 47 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-mon"
version = "0.1.0"
version = "0.2.0"
authors = ["Michael Diamond <[email protected]>"]
description = "CLI to execute commands and log results to healthchecks.io"
repository = "http://github.com/dimo414/task-mon"
Expand All @@ -25,7 +25,7 @@ static_ssl = ['openssl/vendored']
clap = { version = "2.33.3", default_features = false, features = ["vec_map"] }
hostname = "0.3.1"
subprocess = "0.2.6"
ureq = { git = "https://github.com/algesten/ureq", branch = "main" } # waiting for #311 to be released
ureq = "2.0.2"

[dependencies.openssl]
optional = true
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,26 @@ status and the last 10K of output from the process.

```shell
$ task-mon --help
task-mon 0.1.0
Execute commands and log results to healthchecks.io
task-mon 0.2.0
CLI to execute commands and log results to healthchecks.io

USAGE:
task-mon [FLAGS] [OPTIONS] --uuid <UUID> [--] <command>...

FLAGS:
--detailed Include execution details in the information POST-ed (by default just sends stdout/err)
--env Also POSTs the process environment; requires --detailed
-h, --help Prints help information
--head POST the first 10k bytes instead of the last
--ping_only Don't POST any output from the command
-t, --time Ping when the program starts as well as completes
--user_agent Customize the user-agent string sent to the Healthchecks.io server
-V, --version Prints version information
--verbose Write debugging details to stderr
-t, --time Ping when the program starts as well as completes
--head POST the first 10k bytes instead of the last
--ping_only Don't POST any output from the command
--detailed Include execution details in the information POST-ed (by default just sends stdout/err)
--env Also POSTs the process environment; requires --detailed
--verbose Write debugging details to stderr
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--base_url <base_url> Base URL of the Healthchecks.io server to ping [default: https://hc-ping.com]
-k, --uuid <UUID> Healthchecks.io UUID to ping
-k, --uuid <UUID> Healthchecks.io UUID to ping
--user_agent <USER_AGENT> Customize the user-agent string sent to the Healthchecks.io server
--base_url <base_url> Base URL of the Healthchecks.io server to ping [default: https://hc-ping.com]
ARGS:
<command>... The command to run
Expand Down

0 comments on commit 56fbcbf

Please sign in to comment.