prepare 1.10.1 release [ci skip]
This commit is contained in:
parent
3e3d044ac3
commit
2255d63532
3 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [unreleased]
|
## [1.10.1]
|
||||||
### Added
|
### Added
|
||||||
- support for repository-level concurrency limits.
|
- support for repository-level concurrency limits.
|
||||||
- support for gitlab and github internal visibility on initial sync.
|
- support for gitlab and github internal visibility on initial sync.
|
||||||
|
|
|
@ -25,9 +25,9 @@ var (
|
||||||
// VersionMajor is for an API incompatible changes.
|
// VersionMajor is for an API incompatible changes.
|
||||||
VersionMajor int64 = 1
|
VersionMajor int64 = 1
|
||||||
// VersionMinor is for functionality in a backwards-compatible manner.
|
// VersionMinor is for functionality in a backwards-compatible manner.
|
||||||
VersionMinor int64 = 9
|
VersionMinor int64 = 10
|
||||||
// VersionPatch is for backwards-compatible bug fixes.
|
// VersionPatch is for backwards-compatible bug fixes.
|
||||||
VersionPatch int64 = 2
|
VersionPatch int64 = 1
|
||||||
// VersionPre indicates prerelease.
|
// VersionPre indicates prerelease.
|
||||||
VersionPre = ""
|
VersionPre = ""
|
||||||
// VersionDev indicates development branch. Releases will be empty string.
|
// VersionDev indicates development branch. Releases will be empty string.
|
||||||
|
|
|
@ -9,7 +9,7 @@ package version
|
||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
func TestVersion(t *testing.T) {
|
func TestVersion(t *testing.T) {
|
||||||
if got, want := Version.String(), "1.9.2"; got != want {
|
if got, want := Version.String(), "1.10.1"; got != want {
|
||||||
t.Errorf("Want version %s, got %s", want, got)
|
t.Errorf("Want version %s, got %s", want, got)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue