mirror of
https://github.com/harness/drone.git
synced 2025-05-14 07:59:56 +08:00
bump to 1.6.2 [CI SKIP]
This commit is contained in:
parent
57271db3be
commit
e6ac2a53d4
10
CHANGELOG.md
10
CHANGELOG.md
@ -4,13 +4,19 @@ 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).
|
||||||
|
|
||||||
## [1.6.1] -2019-11-08
|
## [1.6.2] -2019-11-08
|
||||||
|
### Added
|
||||||
|
- support for loading license contents from env, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- regression not converting legacy pipeline when using new runners, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
|
|
||||||
|
## [1.6.1] -2019-10-17
|
||||||
### Added
|
### Added
|
||||||
- updated autocert library in support of acme v2 protocol, by [@bradrydzewski](https://github.com/bradrydzewski).
|
- updated autocert library in support of acme v2 protocol, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- fixed nil pointer when manually adding user from api, by [@bradrydzewski](https://github.com/bradrydzewski).
|
- fixed nil pointer when manually adding user from api, by [@bradrydzewski](https://github.com/bradrydzewski).
|
||||||
- regression not converting legacy pipeline when using new runners, by [@bradrydzewski](https://github.com/bradrydzewski).
|
|
||||||
|
|
||||||
## [1.6.0] - 2019-10-04
|
## [1.6.0] - 2019-10-04
|
||||||
### Added
|
### Added
|
||||||
|
@ -27,7 +27,7 @@ var (
|
|||||||
// VersionMinor is for functionality in a backwards-compatible manner.
|
// VersionMinor is for functionality in a backwards-compatible manner.
|
||||||
VersionMinor int64 = 6
|
VersionMinor int64 = 6
|
||||||
// VersionPatch is for backwards-compatible bug fixes.
|
// VersionPatch is for backwards-compatible bug fixes.
|
||||||
VersionPatch int64 = 1
|
VersionPatch int64 = 2
|
||||||
// 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.6.1"; got != want {
|
if got, want := Version.String(), "1.6.2"; got != want {
|
||||||
t.Errorf("Want version %s, got %s", want, got)
|
t.Errorf("Want version %s, got %s", want, got)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user