File tree Expand file tree Collapse file tree 6 files changed +8
-7
lines changed Expand file tree Collapse file tree 6 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.5 .0
2
+ current_version = 1.6 .0
3
3
commit = True
4
4
tag = True
5
5
@@ -18,3 +18,4 @@ replace = version = release = '{new_version}'
18
18
[bumpversion:file:src/manhole/__init__.py]
19
19
search = __version__ = ' {current_version}'
20
20
replace = __version__ = ' {new_version}'
21
+
Original file line number Diff line number Diff line change 2
2
Changelog
3
3
=========
4
4
5
- 1.6.0 (2019-01-16 )
5
+ 1.6.0 (2019-01-19 )
6
6
------------------
7
7
8
8
* Testing improvements (changed some skips to xfail, added osx in Travis).
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ Overview
39
39
:alt: PyPI Package latest release
40
40
:target: https://pypi.org/project/manhole
41
41
42
- .. |commits-since | image :: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.3 .0.svg
42
+ .. |commits-since | image :: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.6 .0.svg
43
43
:alt: Commits since latest release
44
- :target: https://github.com/ionelmc/python-manhole/compare/v1.3 .0...master
44
+ :target: https://github.com/ionelmc/python-manhole/compare/v1.6 .0...master
45
45
46
46
.. |wheel | image :: https://img.shields.io/pypi/wheel/manhole.svg
47
47
:alt: PyPI Wheel
Original file line number Diff line number Diff line change 26
26
year = '2012-2019'
27
27
author = 'Ionel Cristian Mărieș'
28
28
copyright = '{0}, {1}' .format (year , author )
29
- version = release = '1.5 .0'
29
+ version = release = '1.6 .0'
30
30
31
31
pygments_style = 'trac'
32
32
templates_path = ['.' ]
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def run(self):
85
85
86
86
setup (
87
87
name = 'manhole' ,
88
- version = '1.5 .0' ,
88
+ version = '1.6 .0' ,
89
89
license = 'BSD 2-Clause License' ,
90
90
description = 'Manhole is in-process service that will accept unix domain socket connections and present the' ,
91
91
long_description = '%s\n %s' % (
Original file line number Diff line number Diff line change 11
11
import traceback
12
12
from contextlib import closing
13
13
14
- __version__ = '1.5 .0'
14
+ __version__ = '1.6 .0'
15
15
16
16
try :
17
17
import signalfd
You can’t perform that action at this time.
0 commit comments