File tree 5 files changed +20
-4
lines changed
5 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## [ 1.2.0] ( https://github.com/pyouroboros/ouroboros/tree/1.2.0 ) (2019-02-13)
3
+ ## [ 1.2.1] ( https://github.com/pyouroboros/ouroboros/tree/1.2.1 ) (2019-02-13)
4
+ [ Full Changelog] ( https://github.com/pyouroboros/ouroboros/compare/1.2.0...1.2.1 )
5
+
6
+ ** Fixed bugs:**
7
+
8
+ - Broken when no : tag specified [ \# 210] ( https://github.com/pyouroboros/ouroboros/issues/210 )
9
+
10
+ ** Other Pull Requests**
11
+
12
+ - v1.2.1 Merge [ \# 213] ( https://github.com/pyouroboros/ouroboros/pull/213 ) ([ DirtyCajunRice] ( https://github.com/DirtyCajunRice ) )
13
+ - v1.2.1 to develop [ \# 212] ( https://github.com/pyouroboros/ouroboros/pull/212 ) ([ DirtyCajunRice] ( https://github.com/DirtyCajunRice ) )
14
+ - fixes \# 210 [ \# 211] ( https://github.com/pyouroboros/ouroboros/pull/211 ) ([ DirtyCajunRice] ( https://github.com/DirtyCajunRice ) )
15
+ - version bump to 1.2.1 + develop branch + twine fix + … [ \# 209] ( https://github.com/pyouroboros/ouroboros/pull/209 ) ([ DirtyCajunRice] ( https://github.com/DirtyCajunRice ) )
16
+
17
+ ## [ 1.2.0] ( https://github.com/pyouroboros/ouroboros/tree/1.2.0 ) (2019-02-14)
4
18
[ Full Changelog] ( https://github.com/pyouroboros/ouroboros/compare/1.1.2...1.2.0 )
5
19
6
20
** Implemented enhancements:**
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ pipeline {
126
126
steps {
127
127
sh """
128
128
python3 -m venv venv && venv/bin/pip install twine
129
- venv/bin/python setup.py sdist && venv/bin/python -m twine --skip-existing -u ${ PYPI_CREDS_USR} -p ${ PYPI_CREDS_PSW} upload dist/*
129
+ venv/bin/python setup.py sdist && venv/bin/python -m twine upload --skip-existing -u ${ PYPI_CREDS_USR} -p ${ PYPI_CREDS_PSW} dist/*
130
130
git tag ${ TAG}
131
131
git push --tags
132
132
"""
Original file line number Diff line number Diff line change 1
- VERSION = "1.2.0 "
1
+ VERSION = "1.2.1 "
2
2
BRANCH = "master"
Original file line number Diff line number Diff line change @@ -133,6 +133,8 @@ def pull(self, current_tag):
133
133
if not tag :
134
134
self .logger .error ('Missing tag. Skipping...' )
135
135
raise ConnectionError
136
+ elif ':' not in tag :
137
+ tag = f'{ tag } :latest'
136
138
self .logger .debug ('Checking tag: %s' , tag )
137
139
try :
138
140
if self .config .dry_run :
@@ -236,7 +238,6 @@ def socket_check(self):
236
238
latest_image = self .pull (current_tag )
237
239
except ConnectionError :
238
240
continue
239
-
240
241
if current_image .id != latest_image .id :
241
242
updateable .append ((container , current_image , latest_image ))
242
243
else :
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ def readme():
17
17
setup (
18
18
name = 'ouroboros-cli' ,
19
19
version = VERSION ,
20
+ maintainer = 'circa10a' ,
20
21
description = 'Automatically update running docker containers' ,
21
22
long_description = readme (),
22
23
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments