Skip to content

Commit

Permalink
Merge pull request #55 from zalando-incubator/fix-pushing-tags
Browse files Browse the repository at this point in the history
Fix pushing tags: overwrite if tag already exists
  • Loading branch information
tortila authored May 3, 2019
2 parents 817026f + 5016b51 commit 409f5ab
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ before_deploy:
- git config --local user.name "$GITHUB_USERNAME"
- git config --local user.email "$GITHUB_EMAIL"
- export TRAVIS_TAG=v$(poetry run transformer --version)
- git tag $TRAVIS_TAG
- git tag --force $TRAVIS_TAG
deploy:
# Main releases: tags set on master
- provider: script
Expand Down
16 changes: 16 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,22 @@ The format is based on `Keep a Changelog`_, and this project adheres to
:local:
:depth: 1

.. _v1.2.3:

v1.2.3
======

- Release date: 2019-05-03 16:03

- Diff__.

__ https://github.com/zalando-incubator/transformer/compare/v1.2.2...v1.2.3

Changed
-------

No functional changes in Transformer! Fixed: pushing tagged releases to Github.

.. _v1.2.2:

v1.2.2
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# The short X.Y version
version = "1.2"
# The full version, including alpha/beta/rc tags
release = "1.2.2"
release = "1.2.3"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "har-transformer"
version = "1.2.2"
version = "1.2.3"
description = "A tool to convert HAR files into a locustfile."
authors = [
"Serhii Cherniavskyi <serhii.cherniavskyi@zalando.de>",
Expand Down

0 comments on commit 409f5ab

Please sign in to comment.