prepare 1.10.1 release [ci skip]

This commit is contained in:
Brad Rydzewski 2020-12-22 10:44:04 -05:00
parent 3e3d044ac3
commit 2255d63532
3 changed files with 4 additions and 4 deletions

View file

@ -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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [unreleased]
## [1.10.1]
### Added
- support for repository-level concurrency limits.
- support for gitlab and github internal visibility on initial sync.

View file

@ -25,9 +25,9 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 1
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 9
VersionMinor int64 = 10
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 2
VersionPatch int64 = 1
// VersionPre indicates prerelease.
VersionPre = ""
// VersionDev indicates development branch. Releases will be empty string.

View file

@ -9,7 +9,7 @@ package version
import "testing"
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)
}
}