Skip to content

Commit 58aef54

Browse files
author
Pavlos Parissis
committed
RELEASE 0.5.5 version
1 parent e8f008e commit 58aef54

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

ChangeLog

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
CHANGES
22
=======
33

4+
0.5.5
5+
-----
6+
7+
* RELEASE 0.5.5 version
8+
* Make __init__.py more pylint friendly
9+
* Remove encoding declaration as default encoding is UTF-8
10+
* DOC: Update README to include examples for changing address/port
11+
* Fix wrong continued indentation, add space after comma
12+
* Fix useless object-inheritance
13+
* Fix the way we use Exceptions
14+
* Add support in server command to change address/port
15+
* Report when a acl doesn't have entries
16+
* Report when a map doesn't have entries
17+
* Remove unnecessary text from example outputs
18+
* Catch Invalid input for ACL/MAP cmds
19+
420
0.5.4
521
-----
622

@@ -152,7 +168,7 @@ CHANGES
152168
* fix incorrect indentation for -D in the usage
153169
* add a helper function to parse arguments
154170
* update README to reflect to the fact that -D is only part of command args
155-
* cli.py does not need to parse socket_dir
171+
* cli.py does not need to parse socket_dir
156172

157173
0.2.1
158174
-----

haproxytool/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""haproxytool a tool to manage HAProxy via stats socket."""
33
__title__ = 'haproxytool'
44
__author__ = 'Pavlos Parissis'
5-
__version__ = '0.5.4'
5+
__version__ = '0.5.5'
66
__license__ = 'Apache 2.0'
77
__copyright__ = 'Copyright 2015-2019 Pavlos Parissis'
88

0 commit comments

Comments
 (0)