-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go: Tag polyglot go releases with go/vVERSION
> https://go.dev/ref/mod#vcs-version > If a module is defined in a subdirectory within the repository, that is, the > module subdirectory portion of the module path is not empty, then each tag > name must be prefixed with the module subdirectory, followed by a slash. For > example, the module golang.org/x/tools/gopls is defined in the gopls > subdirectory of the repository with root path golang.org/x/tools. The > version v0.4.0 of that module must have the tag named gopls/v0.4.0 in that > repository. Currently, releases are only tagged with `vVERSION`. So to make go happy we have to add a `go/vVERSION` tag. Fixes: #91
- Loading branch information
1 parent
0e7cd7b
commit 569d480
Showing
7 changed files
with
60 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
### Fixed | ||
- This is a test | ||
|
||
## [0.0.1] - 2000-01-01 | ||
|
||
## [0.0.0] - 2000-01-01 | ||
|
||
[Unreleased]: https://github.com/cucumber/polyglot-release/compare/v0.0.1...main | ||
[0.0.1]: https://github.com/cucumber/polyglot-release/compare/v0.0.0...v0.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module github.com/example/project/v0 | ||
|
||
go 1.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# fixture: go-polyglot | ||
polyglot-release 1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Prepare release v1.0.0 (HEAD -> main, tag: v1.0.0, tag: go/v1.0.0, origin/release/v1.0.0, origin/main) | ||
Initial commit (tag: v0.0.1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters