Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.7.0 #299

Merged
merged 6 commits into from
Apr 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .chloggen/codeboten_bump-minimum.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/gotmpl.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

<!-- next version -->

## v0.7.0

### 🛑 Breaking changes 🛑

- `all`: bump minimum go version to 1.19 (#253)

### 🚀 New components 🚀

- `gotmpl`: Add gotmpl tool to allow using text/template via CLI. (#276)

## v0.6.0

### 💡 Enhancements 💡
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ multimod-verify: $(MULTIMOD)

.PHONY: multimod-prerelease
multimod-prerelease: $(MULTIMOD)
multimod prerelease -s=true -b=false -v ./versions.yaml -m tools
multimod prerelease -s=true -v ./versions.yaml -m tools
$(MAKE) tidy

COMMIT?=HEAD
Expand Down
2 changes: 1 addition & 1 deletion crosslink/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
go.opentelemetry.io/build-tools v0.6.0
go.opentelemetry.io/build-tools v0.7.0
go.uber.org/zap v1.24.0
golang.org/x/mod v0.10.0
)
Expand Down
2 changes: 1 addition & 1 deletion dbotconf/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.19
require (
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.2
go.opentelemetry.io/build-tools v0.6.0
go.opentelemetry.io/build-tools v0.7.0
golang.org/x/mod v0.10.0
gopkg.in/yaml.v3 v3.0.1
)
Expand Down
10 changes: 5 additions & 5 deletions internal/tools/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ require (
github.com/client9/misspell v0.3.4
github.com/gogo/protobuf v1.3.2
github.com/golangci/golangci-lint v1.52.2
go.opentelemetry.io/build-tools/chloggen v0.5.0
go.opentelemetry.io/build-tools/crosslink v0.5.0
go.opentelemetry.io/build-tools/dbotconf v0.5.0
go.opentelemetry.io/build-tools/multimod v0.5.0
go.opentelemetry.io/build-tools/chloggen v0.7.0
go.opentelemetry.io/build-tools/crosslink v0.7.0
go.opentelemetry.io/build-tools/dbotconf v0.7.0
go.opentelemetry.io/build-tools/multimod v0.7.0
)

require (
Expand Down Expand Up @@ -179,7 +179,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.6.0 // indirect
go.opentelemetry.io/build-tools v0.7.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion multimod/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.15.0
github.com/stretchr/testify v1.8.2
go.opentelemetry.io/build-tools v0.6.0
go.opentelemetry.io/build-tools v0.7.0
go.uber.org/multierr v1.11.0
golang.org/x/mod v0.10.0
)
Expand Down
2 changes: 1 addition & 1 deletion semconvgen/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.19

require (
github.com/spf13/pflag v1.0.5
go.opentelemetry.io/build-tools v0.6.0
go.opentelemetry.io/build-tools v0.7.0
golang.org/x/mod v0.10.0
golang.org/x/text v0.9.0
)
Expand Down
3 changes: 2 additions & 1 deletion versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@

module-sets:
tools:
version: v0.6.0
version: v0.7.0
modules:
- go.opentelemetry.io/build-tools
- go.opentelemetry.io/build-tools/checkdoc
- go.opentelemetry.io/build-tools/chloggen
- go.opentelemetry.io/build-tools/crosslink
- go.opentelemetry.io/build-tools/dbotconf
- go.opentelemetry.io/build-tools/gotmpl
- go.opentelemetry.io/build-tools/issuegenerator
- go.opentelemetry.io/build-tools/multimod
- go.opentelemetry.io/build-tools/semconvgen
Expand Down