diff --git a/CHANGELOG.md b/CHANGELOG.md index 61fb058c..e0a281fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/hubblo-org/scaphandre/commits/main) +## [0.2.0](https://github.com/hubblo-org/scaphandre/releases/tag/v0.2.0) + +### Added + +- Docker image ([hubblo/scaphandre](https://hub.docker.com/r/hubblo/scaphandre)), ubuntu based: [#48](https://github.com/hubblo-org/scaphandre/pull/48), thanks @rossf7 +- Helm chart to run scaphandre as a DaemonSet in a kubernetes cluster: [#72](https://github.com/hubblo-org/scaphandre/pull/72) - thanks @rossf7 +- JsonExporter, to get metrics in JSON either in stdout or files: [#68](https://github.com/hubblo-org/scaphandre/pull/68) - thanks @wallet77 +- RiemannExporter, to send metrics to [Riemann](http://riemann.io) monitoring tool: [#58](https://github.com/hubblo-org/scaphandre/pull/58) - thanks @uggla +- --qemu flag on PrometheusExporter, to add a "vmname" label to metrics related to processes that represent qemu-kvm virtual machines: [#41](https://github.com/hubblo-org/scaphandre/pull/41) - thanks @uggla +- Better documentation structure (based on [divio's documentation framework](https://documentation.divio.com/) and [mdbook](https://rust-lang.github.io/mdBook/)): [#45](https://github.com/hubblo-org/scaphandre/pull/45), result here: [https://hubblo-org.github.io/scaphandre/](https://hubblo-org.github.io/scaphandre/) +- Automated CI tests including cargo test --all, running on a (bare metal) machine: [#62](https://github.com/hubblo-org/scaphandre/pull/62) + +### Fixed + +- Improved QemuExporter documentation: [#42](https://github.com/hubblo-org/scaphandre/pull/42) - thanks @uggla + ## [0.1.1](https://github.com/hubblo-org/scaphandre/releases/tag/v0.1.1) ### Added diff --git a/Cargo.toml b/Cargo.toml index 76a841fa..3a51f96b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scaphandre" -version = "0.1.1" +version = "0.2.0" authors = ["Benoit Petit "] edition = "2018" license = "Apache-2.0" diff --git a/src/main.rs b/src/main.rs index 1ab5c7f8..52d12460 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,7 +12,7 @@ fn main() { } let mut matches = App::new("scaphandre") .author("Benoit Petit ") - .version("0.1.1") + .version("0.2.0") .long_version(crate_version!()) .about("Extensible metrology agent for energy/electricity consumption related metrics") .setting(AppSettings::SubcommandRequiredElseHelp)