Skip to content

Commit

Permalink
Prepare Release 0.8.0 (#285)
Browse files Browse the repository at this point in the history
* chore(release): Prepare release v0.8.0

* chore(release): Prepare release v0.8.0
  • Loading branch information
lquerel authored Aug 1, 2024
1 parent ceb72cd commit 522ae8a
Show file tree
Hide file tree
Showing 14 changed files with 48 additions and 24 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

All notable changes to this project will be documented in this file.

## [0.8.0] - 2024-08-01

What's Changed

* (#257 by lquerel) Infrastructure to support backward-compatibility testing and, more generally, policies applied to multi-version registries.

```
weaver registry check \
--registry https://github.com/open-telemetry/semantic-conventions.git[model] \
--baseline-registry https://github.com/open-telemetry/semantic-conventions/archive/refs/tags/v1.26.0.zip[model] \
--policy compatibility_check.rego
```

* (#284 by MadVikingGod) The `--policy` flag now accepts directories.
* (#270 by @lquerel) Follow build tools’ case conversion rules. Numbers are no longer considered word splitters.
* (#276 by @jsuereth) Remove legacy way of writing templates for semconv.
* (#274 by @lquerel) Enhance error reporting for invalid JQ expressions.
* (#275 by @lquerel) The custom JQ filter semconv_grouped_metrics now sorts metrics by their metric_name (issue #268).
* (#256) Bump gix from 0.63.0 to 0.64.0.
* (#271) Bump jaq-parse from 1.0.2 to 1.0.3.
* (#272) Bump jaq-core from 1.5.0 to 1.5.1
* (#273) Bump toml from 0.8.16 to 0.8.17
* (#283) Bump minijinja from 2.1.0 to 2.1.1

## [0.7.0] - 2024-07-22

What's Changed
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver"
version = "0.7.0"
version = "0.8.0"
authors = ["OpenTelemetry"]
edition = "2021"
repository = "https://github.com/open-telemetry/weaver"
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_cache"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_checker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_checker"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_codegen_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_codegen_test"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_common"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_diff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_diff"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_forge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_forge"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_resolved_schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_resolved_schema"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_resolver"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_semconv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_semconv"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_semconv_gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_semconv_gen"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/weaver_version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weaver_version"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
repository.workspace = true
license.workspace = true
Expand Down

0 comments on commit 522ae8a

Please sign in to comment.