Skip to content

Commit d32d3d0

Browse files
authored
Merge pull request #19 from zalando-incubator/fix_tag_builds
Ignore version checking if building latest tag.
2 parents 40a04d7 + b1e8796 commit d32d3d0

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ language: python
33
python:
44
- '3.6'
55
- '3.7'
6+
# Don't build tags.
7+
branches:
8+
except:
9+
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
610
install:
711
- pip install --upgrade pip==18.1
812
- pip install poetry codacy-coverage

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.12][] - 2019-05-22
9+
10+
### Fixed
11+
12+
- Don't build tag branches in CI.
13+
814
## [1.2.11][] - 2019-05-21
915

1016
### Added
@@ -93,6 +99,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9399
- Implemented `-v`/`--version` option to show Zelt version.
94100
- This changelog.
95101

102+
[1.2.12]: https://github.com/zalando-incubator/zelt/compare/v1.2.11...v1.2.12
96103
[1.2.11]: https://github.com/zalando-incubator/zelt/compare/v1.2.10...v1.2.11
97104
[1.2.10]: https://github.com/zalando-incubator/zelt/compare/v1.2.9...v1.2.10
98105
[1.2.9]: https://github.com/zalando-incubator/zelt/compare/v1.2.8...v1.2.9

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "zelt"
3-
version = "1.2.11"
3+
version = "1.2.12"
44
description = "Zalando end-to-end load tester"
55
authors = [
66
"Brian Maher <brian.maher@zalando.de>",

0 commit comments

Comments
 (0)