bump version to 0.2.0

This commit is contained in:
Jan Christian Gr??nhage 2020-04-06 14:11:28 +02:00
parent 0e8f270742
commit 15160b197c
4 changed files with 15 additions and 5 deletions

View file

@ -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 ### 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
View file

@ -430,7 +430,7 @@ dependencies = [
[[package]] [[package]]
name = "peshming" name = "peshming"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "peshming" name = "peshming"
version = "0.1.0" version = "0.2.0"
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"] authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
edition = "2018" edition = "2018"
description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus." description = "Pings configured hosts in a configurable intervals and exposes metrics for prometheus."

View file

@ -9,7 +9,8 @@ someone comes up with something better.
### Usage: ### Usage:
``` ```
peshming 0.1.0 $ peshming --help
peshming 0.2.0
Jan Christian Grünhage <jan.christian@gruenhage.xyz> Jan Christian Grünhage <jan.christian@gruenhage.xyz>
Pings configured hosts in a configurable intervals and exposes metrics for prometheus. Pings configured hosts in a configurable intervals and exposes metrics for prometheus.
@ -25,4 +26,4 @@ ARGS:
<config> Set config file <config> Set config file
``` ```
For configuration options, see the included sample config file. For configuration options, see the included sample config file.