Skip to content

Commit 5bbbd0e

Browse files
author
Jonas Haag
committed
Test release 1.5.1
1 parent df2fd66 commit 5bbbd0e

File tree

5 files changed

+34
-19
lines changed

5 files changed

+34
-19
lines changed

.travis.yml

+27-16
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,41 @@
1+
stages:
2+
- test
3+
- deploy
4+
5+
6+
# For tests
17
os: linux
8+
addons:
9+
apt:
10+
packages:
11+
- exuberant-ctags
212
language: python
3-
services:
4-
- docker
513
python:
614
- "2.7"
715
- "3.4"
816
- "3.5"
917
- "3.6"
10-
addons:
11-
apt:
12-
packages:
13-
- exuberant-ctags
14-
jobs:
15-
include:
16-
- python: 3.7
17-
dist: xenial
18-
18+
- "3.7"
19+
- "3.8"
20+
- "nightly"
1921
install:
2022
- "pip install ."
2123
- "pip install -r test_requirements.txt"
2224
script:
2325
- git config --global user.email "[email protected]"
2426
- git config --global user.name "Your Name"
2527
- ./runtests.sh
26-
deploy:
27-
provider: script
28-
on:
29-
tags: true
30-
script: ./build-and-push-docker.sh
28+
29+
30+
# For deploy
31+
services:
32+
- docker
33+
jobs:
34+
include:
35+
- stage: deploy
36+
script: skip
37+
deploy:
38+
on:
39+
tags: true
40+
provider: script
41+
script: ./build-and-push-docker.sh

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
1.5.0 (Nov 26, 2019)
5+
-------------------
6+
- Test release to check Docker pipeline. No changes.
7+
48
1.5.0 (Nov 3, 2019)
59
-------------------
610
- #239: More robust "last updated at" determination (Jelmer Vernooij)

build-and-push-docker.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh -e
2-
docker build -t klaus:$TRAVIS_TAG --build-arg KLAUS_VERSION=$TRAVIS_TAG .
2+
docker build -t jonashaag/klaus:$TRAVIS_TAG --build-arg KLAUS_VERSION=$TRAVIS_TAG .
33
echo "$DOCKERHUB_PASSWORD" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
44
docker push jonashaag/klaus:$TRAVIS_TAG

klaus/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from klaus.repo import FancyRepo, InvalidRepo
88

99

10-
KLAUS_VERSION = utils.guess_git_revision() or '1.5.0'
10+
KLAUS_VERSION = utils.guess_git_revision() or '1.5.1'
1111

1212

1313
class Klaus(flask.Flask):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def install_data_files_hack():
1818

1919
setup(
2020
name='klaus',
21-
version='1.5.0',
21+
version='1.5.1',
2222
author='Jonas Haag',
2323
author_email='[email protected]',
2424
packages=['klaus', 'klaus.contrib'],

0 commit comments

Comments
 (0)