(maint)-release 2.3.1

This commit is contained in:
Dan Wilson 2021-09-09 12:54:41 +01:00
parent 1e6e05c245
commit e1d4f240f4
3 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,13 @@
# Changelog
## [v2.3.1](https://github.com/drone/drone/tree/v2.3.1) (2021-09-09)
[Full Changelog](https://github.com/drone/drone/compare/v2.3.0...v2.3.1)
**Merged pull requests:**
- bump ui to v2.2.1 - https://github.com/drone/drone-ui/blob/main/CHANGELOG.md [\#3138](https://github.com/drone/drone/pull/3138) ([d1wilko](https://github.com/d1wilko))
## [v2.3.0](https://github.com/drone/drone/tree/v2.3.0) (2021-09-09)
[Full Changelog](https://github.com/drone/drone/compare/v2.2.0...v2.3.0)

View file

@ -27,7 +27,7 @@ var (
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 3
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 0
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(), "2.3.0"; got != want {
if got, want := Version.String(), "2.3.1"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}