Skip to content

Commit 6d4fee5

Browse files
committed
release 1.0.2
1 parent 98586a9 commit 6d4fee5

File tree

3 files changed

+32
-9
lines changed

3 files changed

+32
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Please check dev branch.
99

10+
## [1.0.2](https://github.com/hubblo-org/scaphandre/releases/tag/v1.0.1)
11+
12+
### Fixed
13+
14+
- Upgraded Docker image to rust:1.84
15+
1016
## [1.0.1](https://github.com/hubblo-org/scaphandre/releases/tag/v1.0.1)
1117

1218
### Added

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+24-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scaphandre"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = ["Benoit Petit <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -29,23 +29,40 @@ chrono = "0.4"
2929
docker-sync = { version = "0.1.2", optional = true }
3030
k8s-sync = { version = "0.2.3", optional = true }
3131
hyper = { version = "0.14", features = ["full"], optional = true }
32-
tokio = { version = "1.26.0", features = ["full"], optional = true}
33-
sysinfo = { version = "0.28.3"}
32+
tokio = { version = "1.26.0", features = ["full"], optional = true }
33+
sysinfo = { version = "0.28.3" }
3434
isahc = { version = "1.7.2", optional = true }
35-
ctrlc = { version = "3.4", features = [ "termination" ] }
35+
ctrlc = { version = "3.4", features = ["termination"] }
3636

3737
[target.'cfg(target_os="linux")'.dependencies]
3838
procfs = { version = "0.15.0" }
3939

4040
[target.'cfg(target_os="windows")'.dependencies]
41-
windows = { version = "0.27.0", features = ["alloc","Win32_Storage_FileSystem","Win32_Foundation","Win32_Security","Win32_System_IO","Win32_System_Ioctl","Win32_System_Threading", "Win32_System_SystemInformation"]}
41+
windows = { version = "0.27.0", features = [
42+
"alloc",
43+
"Win32_Storage_FileSystem",
44+
"Win32_Foundation",
45+
"Win32_Security",
46+
"Win32_System_IO",
47+
"Win32_System_Ioctl",
48+
"Win32_System_Threading",
49+
"Win32_System_SystemInformation",
50+
] }
4251
windows-service = { version = "0.6.0" }
4352
raw-cpuid = { version = "10.5.0" }
44-
core_affinity = { version = "0.8.1"}
53+
core_affinity = { version = "0.8.1" }
4554
x86 = { version = "0.52.0" }
4655

4756
[features]
48-
default = ["prometheus", "riemann", "warpten", "json", "containers", "prometheuspush", "qemu"]
57+
default = [
58+
"prometheus",
59+
"riemann",
60+
"warpten",
61+
"json",
62+
"containers",
63+
"prometheuspush",
64+
"qemu",
65+
]
4966
prometheus = ["hyper", "tokio"]
5067
riemann = ["riemann_client"]
5168
json = ["serde", "serde_json"]

0 commit comments

Comments
 (0)