diff --git a/CHANGELOG.md b/CHANGELOG.md index bb58e2b..454eb8a 100644 --- a/CHANGELOG.md +++ b/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. \ No newline at end of file +Initial implementation. This works, but still has compiler warnings during +compilation. diff --git a/Cargo.lock b/Cargo.lock index 231175f..f7eaaf3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", diff --git a/Cargo.toml b/Cargo.toml index 7fbb259..e223d25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peshming" -version = "0.1.0" +version = "0.2.0" authors = ["Jan Christian Grünhage "] edition = "2018" description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus." diff --git a/README.md b/README.md index b0e19a7..6bcb6dd 100644 --- a/README.md +++ b/README.md @@ -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 Pings configured hosts in a configurable intervals and exposes metrics for prometheus. @@ -25,4 +26,4 @@ ARGS: Set config file ``` -For configuration options, see the included sample config file. \ No newline at end of file +For configuration options, see the included sample config file.