Skip to content

Commit ad8425b

Browse files
committed
feat: release v0.2.0
1 parent 745340a commit ad8425b

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased](https://github.com/hubblo-org/scaphandre/commits/main)
77

8+
## [0.2.0](https://github.com/hubblo-org/scaphandre/releases/tag/v0.2.0)
9+
10+
### Added
11+
12+
- Docker image ([hubblo/scaphandre](https://hub.docker.com/r/hubblo/scaphandre)), ubuntu based: [#48](https://github.com/hubblo-org/scaphandre/pull/48), thanks @rossf7
13+
- Helm chart to run scaphandre as a DaemonSet in a kubernetes cluster: [#72](https://github.com/hubblo-org/scaphandre/pull/72) - thanks @rossf7
14+
- JsonExporter, to get metrics in JSON either in stdout or files: [#68](https://github.com/hubblo-org/scaphandre/pull/68) - thanks @wallet77
15+
- RiemannExporter, to send metrics to [Riemann](http://riemann.io) monitoring tool: [#58](https://github.com/hubblo-org/scaphandre/pull/58) - thanks @uggla
16+
- --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
17+
- 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/)
18+
- Automated CI tests including cargo test --all, running on a (bare metal) machine: [#62](https://github.com/hubblo-org/scaphandre/pull/62)
19+
20+
### Fixed
21+
22+
- Improved QemuExporter documentation: [#42](https://github.com/hubblo-org/scaphandre/pull/42) - thanks @uggla
23+
824
## [0.1.1](https://github.com/hubblo-org/scaphandre/releases/tag/v0.1.1)
925

1026
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scaphandre"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Benoit Petit <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn main() {
1212
}
1313
let mut matches = App::new("scaphandre")
1414
.author("Benoit Petit <[email protected]>")
15-
.version("0.1.1")
15+
.version("0.2.0")
1616
.long_version(crate_version!())
1717
.about("Extensible metrology agent for energy/electricity consumption related metrics")
1818
.setting(AppSettings::SubcommandRequiredElseHelp)

0 commit comments

Comments
 (0)