diff --git a/CHANGELOG.md b/CHANGELOG.md index 03a2b95e..f845e6b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/version/version.go b/version/version.go index 5f4951d8..2a7aef84 100644 --- a/version/version.go +++ b/version/version.go @@ -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. diff --git a/version/version_test.go b/version/version_test.go index 73f2b1f6..2b778716 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -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) } }