bump version to 0.2.0
This commit is contained in:
parent
0e8f270742
commit
15160b197c
4 changed files with 15 additions and 5 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,2 +1,11 @@
|
|||
### v0.2.0
|
||||
- switched from oping to tokio-ping. This removes the dependency on liboping and
|
||||
a bunch of custom build tooling.
|
||||
- improved error handling
|
||||
- added copyright headers
|
||||
- update dependencies
|
||||
- use async/await syntax and updated async ecosystem libraries where possible
|
||||
|
||||
### v0.1.0
|
||||
Initial implementation. This works, but still has compiler warnings during compilation.
|
||||
Initial implementation. This works, but still has compiler warnings during
|
||||
compilation.
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -430,7 +430,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "peshming"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "peshming"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
|
||||
edition = "2018"
|
||||
description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus."
|
||||
|
|
|
@ -9,7 +9,8 @@ someone comes up with something better.
|
|||
|
||||
### Usage:
|
||||
```
|
||||
peshming 0.1.0
|
||||
$ peshming --help
|
||||
peshming 0.2.0
|
||||
Jan Christian Grünhage <jan.christian@gruenhage.xyz>
|
||||
Pings configured hosts in a configurable intervals and exposes metrics for prometheus.
|
||||
|
||||
|
@ -25,4 +26,4 @@ ARGS:
|
|||
<config> Set config file
|
||||
|
||||
```
|
||||
For configuration options, see the included sample config file.
|
||||
For configuration options, see the included sample config file.
|
||||
|
|
Loading…
Reference in a new issue