From a0880ac57bcd42168e714540045c62941a557e97 Mon Sep 17 00:00:00 2001 From: Pablo Baeyens Date: Tue, 9 Jul 2024 19:16:43 +0200 Subject: [PATCH] Release v0.14.0 (#583) * [chore] Bump version in versions.yaml * Prepare tools for version v0.14.0 * make tidy * make chlog-update VERSION=v0.14.0 --- ...mconvgen-flag-for-custom-capitalizations.yaml | 16 ---------------- .chloggen/mx-psi_multimod-modref.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 100644 .chloggen/528-semconvgen-flag-for-custom-capitalizations.yaml delete mode 100755 .chloggen/mx-psi_multimod-modref.yaml diff --git a/.chloggen/528-semconvgen-flag-for-custom-capitalizations.yaml b/.chloggen/528-semconvgen-flag-for-custom-capitalizations.yaml deleted file mode 100644 index 6aa93bf5..00000000 --- a/.chloggen/528-semconvgen-flag-for-custom-capitalizations.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: semconvgen - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: "Add `--capitalizations-path` to allow users to add additional strings to the static capitalizations slice in generator.go" - -# One or more tracking issues related to the change -issues: [528] - -# (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/mx-psi_multimod-modref.yaml b/.chloggen/mx-psi_multimod-modref.yaml deleted file mode 100755 index 876c3171..00000000 --- a/.chloggen/mx-psi_multimod-modref.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: bug_fix - -# The name of the component, or a single word describing the area of concern, (e.g. crosslink) -component: multimod - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Get pseudoversion for each module in a module set separately to support moving modules between module sets. - -# One or more tracking issues related to the change -issues: [582] - -# (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 526e8c3e..84d3c9b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ +## v0.14.0 + +### 💡 Enhancements 💡 + +- `semconvgen`: Add `--capitalizations-path` to allow users to add additional strings to the static capitalizations slice in generator.go (#528) + +### 🧰 Bug fixes 🧰 + +- `multimod`: Get pseudoversion for each module in a module set separately to support moving modules between module sets. (#582) + ## v0.13.0 ### 🛑 Breaking changes 🛑 diff --git a/crosslink/go.mod b/crosslink/go.mod index 9f8e8ad0..468f98e3 100644 --- a/crosslink/go.mod +++ b/crosslink/go.mod @@ -8,7 +8,7 @@ require ( github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/build-tools v0.13.0 + go.opentelemetry.io/build-tools v0.14.0 go.uber.org/zap v1.27.0 golang.org/x/mod v0.19.0 ) diff --git a/dbotconf/go.mod b/dbotconf/go.mod index 3174d919..c94db5ed 100644 --- a/dbotconf/go.mod +++ b/dbotconf/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/spf13/cobra v1.8.1 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/build-tools v0.13.0 + go.opentelemetry.io/build-tools v0.14.0 golang.org/x/mod v0.19.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/internal/tools/go.mod b/internal/tools/go.mod index 2f8c33ac..4c41cd93 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -194,7 +194,7 @@ require ( gitlab.com/bosi/decorder v0.4.2 // indirect go-simpler.org/musttag v0.12.1 // indirect go-simpler.org/sloglint v0.6.0 // indirect - go.opentelemetry.io/build-tools v0.13.0 // indirect + go.opentelemetry.io/build-tools v0.14.0 // indirect go.uber.org/automaxprocs v1.5.3 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect diff --git a/multimod/go.mod b/multimod/go.mod index 477adcef..bc48deae 100644 --- a/multimod/go.mod +++ b/multimod/go.mod @@ -7,7 +7,7 @@ require ( github.com/spf13/cobra v1.8.1 github.com/spf13/viper v1.19.0 github.com/stretchr/testify v1.9.0 - go.opentelemetry.io/build-tools v0.13.0 + go.opentelemetry.io/build-tools v0.14.0 go.uber.org/multierr v1.11.0 golang.org/x/mod v0.19.0 ) diff --git a/semconvgen/go.mod b/semconvgen/go.mod index 19b36365..a86c5ec0 100644 --- a/semconvgen/go.mod +++ b/semconvgen/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/spf13/pflag v1.0.5 - go.opentelemetry.io/build-tools v0.13.0 + go.opentelemetry.io/build-tools v0.14.0 golang.org/x/mod v0.19.0 golang.org/x/text v0.16.0 ) diff --git a/versions.yaml b/versions.yaml index 8730bd05..7079cba5 100644 --- a/versions.yaml +++ b/versions.yaml @@ -14,7 +14,7 @@ module-sets: tools: - version: v0.13.0 + version: v0.14.0 modules: - go.opentelemetry.io/build-tools - go.opentelemetry.io/build-tools/checkfile