Skip to content

Commit a2da58a

Browse files
authored
Update for 0.11.0 release. (#505)
1 parent 18aa288 commit a2da58a

File tree

14 files changed

+35
-24
lines changed

14 files changed

+35
-24
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,20 @@ All notable changes to this project will be documented in this file.
66

77
What's changed
88

9+
## [0.11.0] - 2024-12-05
10+
11+
What's changed
12+
913
* Detect duplicate group ids, group names, and metric names. ([#382](https://github.com/open-telemetry/weaver/pull/382) by lquerel).
1014
* Add support for Maps `map[]` to the definition of an `AnyValue`. ([#396](https://github.com/open-telemetry/weaver/pull/396) by @MSNev).
1115
* Update semconv schema, syntax doc and validity check to correctly define `stability` as optional for attribute groups. ([#467](https://github.com/open-telemetry/weaver/pull/467) by @jerbly).
1216
* Fix issue [#405](https://github.com/open-telemetry/weaver/issues/405) - Updated the EBNF and JSON schema to define the `extends` or `attributes` requirement mandatory for all group types except `metric` and `event`. Added a group validity check as a warning. ([#494](https://github.com/open-telemetry/weaver/pull/494) by @jerbly).
17+
* Allow adding a description when using opt_in requirement level ([#392](https://github.com/open-telemetry/weaver/pull/392) by @joaopgrassi)
18+
* Add warning that issues when using prefix on groups ([#407](https://github.com/open-telemetry/weaver/pull/407) by @jsuereth)
19+
* Update comment filter to remove trailing spaces ([#453](https://github.com/open-telemetry/weaver/pull/453) by @jsuereth)
20+
* Metrics and Events don't require attributes ([#494](https://github.com/open-telemetry/weaver/pull/494) by @jerbly)
21+
* Added an option to follow symbolic links when loading the registry in various parts of the codebase. ([#468](https://github.com/open-telemetry/weaver/pull/468) by @leo6leo)
22+
* Provide max line-length in comment filter. ([#454](https://github.com/open-telemetry/weaver/pull/454) by @jsuereth)
1323

1424
## [0.10.0] - 2024-09-23
1525

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors = ["OpenTelemetry"]
55
edition = "2021"
66
repository = "https://github.com/open-telemetry/weaver"
@@ -28,6 +28,7 @@ members = [
2828
]
2929

3030
[workspace.package]
31+
version = "0.11.0"
3132
authors = ["OpenTelemetry"]
3233
edition = "2021"
3334
repository = "https://github.com/open-telemetry/weaver"

crates/weaver_cache/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_cache"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

crates/weaver_checker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_checker"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

crates/weaver_codegen_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_codegen_test"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

crates/weaver_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_common"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

crates/weaver_diff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_diff"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

crates/weaver_forge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_forge"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

crates/weaver_resolved_schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "weaver_resolved_schema"
3-
version = "0.10.0"
3+
version.workspace = true
44
authors.workspace = true
55
repository.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)