From 30527bee60767f872b1b9f65375b2487e99f8bbb Mon Sep 17 00:00:00 2001 From: Daniel Jaglowski Date: Tue, 1 Aug 2023 10:45:14 -0400 Subject: [PATCH] Release 0.11.0 (#382) * Bump versions.yaml to v0.11.0 * Prepare tools for version v0.11.0 * Tidy and chloggen --- .chloggen/chloggen-multiple-logs.yaml | 16 ---------------- .chloggen/remove-checkdoc.yaml | 16 ---------------- CHANGELOG.md | 10 ++++++++++ crosslink/go.mod | 2 +- dbotconf/go.mod | 2 +- internal/tools/go.mod | 2 +- multimod/go.mod | 2 +- semconvgen/go.mod | 2 +- versions.yaml | 2 +- 9 files changed, 16 insertions(+), 38 deletions(-) delete mode 100755 .chloggen/chloggen-multiple-logs.yaml delete mode 100755 .chloggen/remove-checkdoc.yaml diff --git a/.chloggen/chloggen-multiple-logs.yaml b/.chloggen/chloggen-multiple-logs.yaml deleted file mode 100755 index 2924cc4b..00000000 --- a/.chloggen/chloggen-multiple-logs.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component, or a single word describing the area of concern, (e.g. crosslink) -component: chloggen - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add ability to configure separate changelogs for different audiences - -# One or more tracking issues related to the change -issues: [364] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/.chloggen/remove-checkdoc.yaml b/.chloggen/remove-checkdoc.yaml deleted file mode 100755 index 5c2a1c28..00000000 --- a/.chloggen/remove-checkdoc.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: breaking - -# The name of the component, or a single word describing the area of concern, (e.g. crosslink) -component: checkdoc - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: checkdoc has been removed in favor of checkfile. Please use checkfile with argument --file-name README.md instead. - -# One or more tracking issues related to the change -issues: [378] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4101010d..b5c1b102 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ +## v0.11.0 + +### 🛑 Breaking changes 🛑 + +- `checkdoc`: checkdoc has been removed in favor of checkfile. Please use checkfile with argument --file-name README.md instead. (#378) + +### 💡 Enhancements 💡 + +- `chloggen`: Add ability to configure separate changelogs for different audiences (#364) + ## v0.10.0 ### 🛑 Breaking changes 🛑 diff --git a/crosslink/go.mod b/crosslink/go.mod index adfd2902..a4ee44f8 100644 --- a/crosslink/go.mod +++ b/crosslink/go.mod @@ -8,7 +8,7 @@ require ( github.com/spf13/cobra v1.7.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.4 - go.opentelemetry.io/build-tools v0.10.0 + go.opentelemetry.io/build-tools v0.11.0 go.uber.org/zap v1.24.0 golang.org/x/mod v0.12.0 ) diff --git a/dbotconf/go.mod b/dbotconf/go.mod index 8a6900b1..90144a5b 100644 --- a/dbotconf/go.mod +++ b/dbotconf/go.mod @@ -5,7 +5,7 @@ go 1.19 require ( github.com/spf13/cobra v1.7.0 github.com/stretchr/testify v1.8.4 - go.opentelemetry.io/build-tools v0.10.0 + go.opentelemetry.io/build-tools v0.11.0 golang.org/x/mod v0.12.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/internal/tools/go.mod b/internal/tools/go.mod index ab619b3c..a5e7f51c 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -184,7 +184,7 @@ require ( github.com/yeya24/promlinter v0.2.0 // indirect github.com/ykadowak/zerologlint v0.1.2 // indirect gitlab.com/bosi/decorder v0.2.3 // indirect - go.opentelemetry.io/build-tools v0.10.0 // indirect + go.opentelemetry.io/build-tools v0.11.0 // indirect go.tmz.dev/musttag v0.7.0 // indirect go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.11.0 // indirect diff --git a/multimod/go.mod b/multimod/go.mod index d003fb69..8e50a7c5 100644 --- a/multimod/go.mod +++ b/multimod/go.mod @@ -7,7 +7,7 @@ require ( github.com/spf13/cobra v1.7.0 github.com/spf13/viper v1.16.0 github.com/stretchr/testify v1.8.4 - go.opentelemetry.io/build-tools v0.10.0 + go.opentelemetry.io/build-tools v0.11.0 go.uber.org/multierr v1.11.0 golang.org/x/mod v0.12.0 ) diff --git a/semconvgen/go.mod b/semconvgen/go.mod index 8dc416cd..d387f159 100644 --- a/semconvgen/go.mod +++ b/semconvgen/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/spf13/pflag v1.0.5 - go.opentelemetry.io/build-tools v0.10.0 + go.opentelemetry.io/build-tools v0.11.0 golang.org/x/mod v0.12.0 golang.org/x/text v0.11.0 ) diff --git a/versions.yaml b/versions.yaml index c2035dca..cc89f2a6 100644 --- a/versions.yaml +++ b/versions.yaml @@ -14,7 +14,7 @@ module-sets: tools: - version: v0.10.0 + version: v0.11.0 modules: - go.opentelemetry.io/build-tools - go.opentelemetry.io/build-tools/checkfile