Skip to content

Commit 56fbcbf

Browse files
committed
Cut v0.2.0 now that ureq has been updated.
1 parent 8f982e6 commit 56fbcbf

3 files changed

Lines changed: 57 additions & 62 deletions

File tree

Cargo.lock

Lines changed: 42 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "task-mon"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Michael Diamond <dimo414@gmail.com>"]
55
description = "CLI to execute commands and log results to healthchecks.io"
66
repository = "http://github.com/dimo414/task-mon"
@@ -25,7 +25,7 @@ static_ssl = ['openssl/vendored']
2525
clap = { version = "2.33.3", default_features = false, features = ["vec_map"] }
2626
hostname = "0.3.1"
2727
subprocess = "0.2.6"
28-
ureq = { git = "https://github.com/algesten/ureq", branch = "main" } # waiting for #311 to be released
28+
ureq = "2.0.2"
2929

3030
[dependencies.openssl]
3131
optional = true

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@ status and the last 10K of output from the process.
3939

4040
```shell
4141
$ task-mon --help
42-
task-mon 0.1.0
43-
Execute commands and log results to healthchecks.io
42+
task-mon 0.2.0
43+
CLI to execute commands and log results to healthchecks.io
4444

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

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

0 commit comments

Comments
 (0)