Skip to content

Commit

Permalink
Release v0.13.0 (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared committed Mar 2, 2024
1 parent fa341a2 commit 96f66d7
Show file tree
Hide file tree
Showing 17 changed files with 46 additions and 179 deletions.
16 changes: 0 additions & 16 deletions .chloggen/bump-go-1.20.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .chloggen/codeboten_add-ignore-excluded.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/codeboten_crosslink-skip.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .chloggen/codeboten_multimod-add-tag-support.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .chloggen/crosslink-fix-windows-backslashes.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .chloggen/custom-changelog-template.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .chloggen/dbotconf-fix-windows-backslashes.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions .chloggen/multimod-fix-tagging-on-windows.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/multimod-print-using-to-stderr.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/permissions-with-no-execution.yaml

This file was deleted.

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

<!-- next version -->

## v0.13.0

### 🛑 Breaking changes 🛑

- `all`: bump minimal Go version to 1.20 (#474)

### 💡 Enhancements 💡

- `multimod`: ignore excluded-modules when using sync to update dependencies (#442)
This allows users of the sync command to sync all modules in a monorepo, including
those listed in the excluded-modules. This is useful for repositories where some modules
may not yet be ready for releasing (therefore listed under excluded-modules) but their
dependencies still need to be managed via multimod.

- `crosslink`: Add `--skip` flag to ignore specified go modules (#480)
- `multimod`: add support for `--commit-hash` to allow users to overwrite the tag in a versions.yaml file (#422)
This feature allows users to specify a tag (i.e. main) when they want to update
modules.

- `chloggen`: support a custom changelog summary template (#501)
The changelog summary template can be customized by configuring a custom template with the `summary_template` configuration setting.
The default template provides a starting point for a custom template: https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/v0.13.0/chloggen/internal/chlog/summary.tmpl


### 🧰 Bug fixes 🧰

- `crosslink`: Fix Windows produces backslashes instead of slashes (#458)
This fixes the issue of Windows produces backslashes instead of slashes when crosslinking
dependencies in go.mod files on Windows.

- `dbotconf`: Fix Windows produces backslashes instead of slashes (#264)
This fixes the issue of Windows produces backslashes instead of slashes when generating
Dependabot configuration files on Windows.

- `multimod`: Fix tagging on Windows (#464)
This fixes the issue of `multimod tag` failing on Windows.

- `multimod`: Fix to log 'Using versioning file' and 'Successfully deleted module tags' to stderr instead of stdout (#507)
- `chloggen`: change generated files permissions from 0755 to 0644 (#457)

## 0.12.0

### 💡 Enhancements 💡
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.8.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/build-tools v0.12.0
go.opentelemetry.io/build-tools v0.13.0
go.uber.org/zap v1.27.0
golang.org/x/mod v0.15.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.20
require (
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/build-tools v0.12.0
go.opentelemetry.io/build-tools v0.13.0
golang.org/x/mod v0.15.0
gopkg.in/yaml.v3 v3.0.1
)
Expand Down
2 changes: 1 addition & 1 deletion internal/tools/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ require (
gitlab.com/bosi/decorder v0.4.1 // indirect
go-simpler.org/musttag v0.8.0 // indirect
go-simpler.org/sloglint v0.4.0 // indirect
go.opentelemetry.io/build-tools v0.12.0 // indirect
go.opentelemetry.io/build-tools v0.13.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/crypto v0.19.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.8.0
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/build-tools v0.12.0
go.opentelemetry.io/build-tools v0.13.0
go.uber.org/multierr v1.11.0
golang.org/x/mod v0.15.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.20

require (
github.com/spf13/pflag v1.0.5
go.opentelemetry.io/build-tools v0.12.0
go.opentelemetry.io/build-tools v0.13.0
golang.org/x/mod v0.15.0
golang.org/x/text v0.14.0
)
Expand Down
2 changes: 1 addition & 1 deletion versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module-sets:
tools:
version: v0.12.0
version: v0.13.0
modules:
- go.opentelemetry.io/build-tools
- go.opentelemetry.io/build-tools/checkfile
Expand Down

0 comments on commit 96f66d7

Please sign in to comment.