From 5bb18a937bd15d5c5f51176b5dd7d5af2e938487 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Fri, 10 Feb 2023 15:28:27 -0800 Subject: [PATCH] Release v0.6.0 (#243) * Bump tools modules version * Prepare tools for version v0.6.0 * Update changelog * Run go mod tidy --- .chloggen/chloggen-dot-parse.yaml | 16 --------------- .chloggen/fix_semconvgen.yaml | 16 --------------- .chloggen/otel-cap.yaml | 16 --------------- .../use-go-embed-for-chloggen-template.yaml | 16 --------------- CHANGELOG.md | 20 +++++++++++++++++++ crosslink/go.mod | 2 +- dbotconf/go.mod | 2 +- internal/tools/go.mod | 2 +- multimod/go.mod | 2 +- semconvgen/go.mod | 2 +- versions.yaml | 2 +- 11 files changed, 26 insertions(+), 70 deletions(-) delete mode 100755 .chloggen/chloggen-dot-parse.yaml delete mode 100755 .chloggen/fix_semconvgen.yaml delete mode 100755 .chloggen/otel-cap.yaml delete mode 100644 .chloggen/use-go-embed-for-chloggen-template.yaml diff --git a/.chloggen/chloggen-dot-parse.yaml b/.chloggen/chloggen-dot-parse.yaml deleted file mode 100755 index c73b6a47..00000000 --- a/.chloggen/chloggen-dot-parse.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: Allow filenames containing '.' outside of extension - -# One or more tracking issues related to the change -issues: [237] - -# (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/fix_semconvgen.yaml b/.chloggen/fix_semconvgen.yaml deleted file mode 100755 index 04ab187c..00000000 --- a/.chloggen/fix_semconvgen.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: semconvgen - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add docker/podman mount option to modify selinux labels of shared host files. - -# One or more tracking issues related to the change -issues: [222] - -# (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/otel-cap.yaml b/.chloggen/otel-cap.yaml deleted file mode 100755 index 5b863f0a..00000000 --- a/.chloggen/otel-cap.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: semconvgen - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: "Correct capitalization of Otel to be OTel" - -# One or more tracking issues related to the change -issues: [242] - -# (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/use-go-embed-for-chloggen-template.yaml b/.chloggen/use-go-embed-for-chloggen-template.yaml deleted file mode 100644 index 5b5486fa..00000000 --- a/.chloggen/use-go-embed-for-chloggen-template.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: Use go embed to embed the template file in chloggen - -# One or more tracking issues related to the change -issues: [224] - -# (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 adf50cab..ac9ddd02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ +## v0.6.0 + +### 💡 Enhancements 💡 + +- `chloggen`: Allow filenames containing '.' outside of extension (#237) + +### 🧰 Bug fixes 🧰 + +- `semconvgen`: Correct capitalization of Otel to be OTel (#242) + +## v0.5.0 + +### 💡 Enhancements 💡 + +- `chloggen`: Use go embed to embed the template file in chloggen (#224) + +### 🧰 Bug fixes 🧰 + +- `semconvgen`: Add docker/podman mount option to modify selinux labels of shared host files. (#222) + ## v0.4.0 ### 💡 Enhancements 💡 diff --git a/crosslink/go.mod b/crosslink/go.mod index e98c7d6a..586f387a 100644 --- a/crosslink/go.mod +++ b/crosslink/go.mod @@ -8,7 +8,7 @@ require ( github.com/spf13/cobra v1.6.1 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.1 - go.opentelemetry.io/build-tools v0.5.0 + go.opentelemetry.io/build-tools v0.6.0 go.uber.org/zap v1.24.0 golang.org/x/mod v0.7.0 ) diff --git a/dbotconf/go.mod b/dbotconf/go.mod index 67d48b43..675075f6 100644 --- a/dbotconf/go.mod +++ b/dbotconf/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/spf13/cobra v1.6.1 github.com/stretchr/testify v1.8.1 - go.opentelemetry.io/build-tools v0.5.0 + go.opentelemetry.io/build-tools v0.6.0 golang.org/x/mod v0.7.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/internal/tools/go.mod b/internal/tools/go.mod index c9b4853f..9071017e 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -180,7 +180,7 @@ require ( github.com/yagipy/maintidx v1.0.0 // indirect github.com/yeya24/promlinter v0.2.0 // indirect gitlab.com/bosi/decorder v0.2.3 // indirect - go.opentelemetry.io/build-tools v0.5.0 // indirect + go.opentelemetry.io/build-tools v0.6.0 // indirect go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.9.0 // indirect go.uber.org/zap v1.24.0 // indirect diff --git a/multimod/go.mod b/multimod/go.mod index 1189b764..9e61d01e 100644 --- a/multimod/go.mod +++ b/multimod/go.mod @@ -7,7 +7,7 @@ require ( github.com/spf13/cobra v1.6.1 github.com/spf13/viper v1.15.0 github.com/stretchr/testify v1.8.1 - go.opentelemetry.io/build-tools v0.5.0 + go.opentelemetry.io/build-tools v0.6.0 go.uber.org/multierr v1.9.0 golang.org/x/mod v0.7.0 ) diff --git a/semconvgen/go.mod b/semconvgen/go.mod index 29614c53..4ffba1da 100644 --- a/semconvgen/go.mod +++ b/semconvgen/go.mod @@ -4,7 +4,7 @@ go 1.18 require ( github.com/spf13/pflag v1.0.5 - go.opentelemetry.io/build-tools v0.5.0 + go.opentelemetry.io/build-tools v0.6.0 golang.org/x/mod v0.7.0 golang.org/x/text v0.6.0 ) diff --git a/versions.yaml b/versions.yaml index 63530d29..ce3b44fa 100644 --- a/versions.yaml +++ b/versions.yaml @@ -14,7 +14,7 @@ module-sets: tools: - version: v0.5.0 + version: v0.6.0 modules: - go.opentelemetry.io/build-tools - go.opentelemetry.io/build-tools/checkdoc