increase version number to 1.9.1
This commit is contained in:
parent
b5a401be56
commit
af90802e2d
3 changed files with 12 additions and 2 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -4,6 +4,16 @@ 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).
|
||||
|
||||
## [1.9.1]
|
||||
### Added
|
||||
- support for increasing the http request timeout for extensions. [#2998](https://github.com/drone/drone/pull/2998).
|
||||
- support for skipping a pipeline if the validation extension returns an ErrSkip.
|
||||
- support for blocking a pipeline if the validation extension returns an ErrBlock.
|
||||
|
||||
### Fixed
|
||||
- rollback endpoint should be available to users with write permission.
|
||||
- retrying a build should re-use custom build parameters from parent build.
|
||||
|
||||
## [1.9.0] - 2020-07-12
|
||||
### Added
|
||||
- ui support for deployment list and summary.
|
||||
|
|
|
@ -27,7 +27,7 @@ var (
|
|||
// VersionMinor is for functionality in a backwards-compatible manner.
|
||||
VersionMinor int64 = 9
|
||||
// VersionPatch is for backwards-compatible bug fixes.
|
||||
VersionPatch int64
|
||||
VersionPatch int64 = 1
|
||||
// VersionPre indicates prerelease.
|
||||
VersionPre = ""
|
||||
// VersionDev indicates development branch. Releases will be empty string.
|
||||
|
|
|
@ -9,7 +9,7 @@ package version
|
|||
import "testing"
|
||||
|
||||
func TestVersion(t *testing.T) {
|
||||
if got, want := Version.String(), "1.9.0"; got != want {
|
||||
if got, want := Version.String(), "1.9.1"; got != want {
|
||||
t.Errorf("Want version %s, got %s", want, got)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue