Skip to content

Commit a095ab2

Browse files
authored
Release (fix docs.rs build) (#189)
- [x] I confirm that I've made a best effort attempt to update all relevant documentation. - [x] I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent e135d1e commit a095ab2

File tree

13 files changed

+52
-46
lines changed

13 files changed

+52
-46
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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
## [Unreleased]
99

10+
## [0.1.15](https://github.com/awslabs/metrique/compare/metrique-v0.1.14...metrique-v0.1.15) - 2026-01-16
11+
12+
### Fixes
13+
14+
- Fix docs.rs build, add docs.rs build check script and CI job ([#188](https://github.com/awslabs/metrique/pull/188))
15+
1016
## [0.1.14](https://github.com/awslabs/metrique/compare/metrique-v0.1.13...metrique-v0.1.14) - 2026-01-15
1117

1218
### Added

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

metrique-aggregation/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-aggregation"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
rust-version = "1.89" # build.yml
66
license = "Apache-2.0"
@@ -10,15 +10,15 @@ readme = "README.md"
1010

1111
[dependencies]
1212
metrique = { path = "../metrique", version = "0.1" }
13-
metrique-writer = { path = "../metrique-writer", version = "0.1.14" }
14-
metrique-core = { path = "../metrique-core", version = "0.1.12" }
15-
metrique-macro = { path = "../metrique-macro", version = "0.1.11" }
13+
metrique-writer = { path = "../metrique-writer", version = "0.1.15" }
14+
metrique-core = { path = "../metrique-core", version = "0.1.13" }
15+
metrique-macro = { path = "../metrique-macro", version = "0.1.12" }
1616
smallvec.workspace = true
1717
histogram.workspace = true
1818
ordered-float.workspace = true
19-
metrique-writer-core = { version = "0.1.8", path = "../metrique-writer-core" }
19+
metrique-writer-core = { version = "0.1.10", path = "../metrique-writer-core" }
2020
tokio = { workspace = true, default-features = false, features = ["sync"] }
21-
metrique-timesource = { version = "0.1.6", path = "../metrique-timesource", features = ["test-util"] }
21+
metrique-timesource = { version = "0.1.7", path = "../metrique-timesource", features = ["test-util"] }
2222
hashbrown.workspace = true
2323

2424
[dev-dependencies]

metrique-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-core"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"
@@ -9,7 +9,7 @@ repository = "https://github.com/awslabs/metrique"
99
readme = "README.md"
1010

1111
[dependencies]
12-
metrique-writer-core = { path = "../metrique-writer-core", version = "0.1.9" }
12+
metrique-writer-core = { path = "../metrique-writer-core", version = "0.1.10" }
1313
itertools = { workspace = true }
1414

1515
[dev-dependencies]

metrique-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-macro"
3-
version = "0.1.11"
3+
version = "0.1.12"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"

metrique-metricsrs/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-metricsrs"
3-
version = "0.1.14"
3+
version = "0.1.15"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"
@@ -21,9 +21,9 @@ histogram = { workspace = true }
2121
pin-project = { workspace = true }
2222
metrics_024 = { workspace = true, optional = true }
2323
metrics-util_020 = { workspace = true, optional = true }
24-
metrique-writer-core = { path = "../metrique-writer-core", version = "0.1.9", default-features = false }
25-
metrique-writer = { path = "../metrique-writer", version = "0.1.14", default-features = false }
26-
metrique-timesource = { path = "../metrique-timesource", version = "0.1.6" }
24+
metrique-writer-core = { path = "../metrique-writer-core", version = "0.1.10", default-features = false }
25+
metrique-writer = { path = "../metrique-writer", version = "0.1.15", default-features = false }
26+
metrique-timesource = { path = "../metrique-timesource", version = "0.1.7" }
2727
futures = { workspace = true, default-features = false, features = ["executor"] }
2828
tokio = { workspace = true, default-features = false, features = [
2929
"sync", "time"

metrique-service-metrics/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-service-metrics"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"
@@ -9,7 +9,7 @@ repository = "https://github.com/awslabs/metrique"
99
readme = "README.md"
1010

1111
[dependencies]
12-
metrique-writer = { path = "../metrique-writer", version = "0.1.14" }
12+
metrique-writer = { path = "../metrique-writer", version = "0.1.15" }
1313

1414
[dev-dependencies]
1515

metrique-timesource/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-timesource"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"

metrique-writer-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-writer-core"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"

metrique-writer-format-emf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metrique-writer-format-emf"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2024"
55
rust-version = "1.89" # See build.yml for why this MSRV
66
license = "Apache-2.0"
@@ -19,8 +19,8 @@ rand = { workspace = true }
1919
hashbrown = { workspace = true }
2020
serde = { workspace = true, features = ["derive"] }
2121
tracing = { workspace = true }
22-
metrique-writer-core = { path = "../metrique-writer-core", version = "0.1.9" }
23-
metrique-writer = { path = "../metrique-writer", version = "0.1.14" }
22+
metrique-writer-core = { path = "../metrique-writer-core", version = "0.1.10" }
23+
metrique-writer = { path = "../metrique-writer", version = "0.1.15" }
2424

2525
[dev-dependencies]
2626
assert-json-diff = { workspace = true }

0 commit comments

Comments
 (0)