Skip to content

Commit c7e5ea7

Browse files
committed
RELEASE 0.5.6 version
1 parent d971dad commit c7e5ea7

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

ChangeLog

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

4+
0.5.6
5+
-----
6+
7+
* RELEASE 0.5.6 version
8+
* Remove shebang and executable bit from files
9+
* Remove unnecessary print statement
10+
* Print version of haproxyadmin library as well
11+
* Require haproxyadmin version 0.2.2 or higher
12+
413
0.5.5
514
-----
615

716
* RELEASE 0.5.5 version
8-
* Make __init__.py more pylint friendly
17+
* Make \_\_init\_\_.py more pylint friendly
918
* Remove encoding declaration as default encoding is UTF-8
1019
* DOC: Update README to include examples for changing address/port
1120
* Fix wrong continued indentation, add space after comma
@@ -33,7 +42,7 @@ CHANGES
3342
* Remove redundant header
3443
* Fix ordering of module so pylint is happy
3544
* Add docstring and polish a bit the output
36-
* Move the list of valid cmds in __init__
45+
* Move the list of valid cmds in \_\_init\_\_
3746
* Update installation instructions
3847

3948
0.5.2
@@ -59,7 +68,7 @@ CHANGES
5968
* Remove unused classes and exceptions part 2
6069
* Remove unused classes and exceptions
6170
* Add support for accepting a socket file
62-
* Add haproxy_object function
71+
* Add haproxy\_object function
6372
* Fix indentation issues
6473
* Simplify conditional statement
6574

@@ -90,7 +99,7 @@ CHANGES
9099

91100
* RELEASE 0.4.3 version
92101
* Use correct constant for backend metrics
93-
* Rename `list` CLI argument to `show`
102+
* Rename \`list\` CLI argument to \`show\`
94103
* add support for showing pids of HAProxy processes
95104
* fix typo in README
96105

@@ -118,7 +127,7 @@ CHANGES
118127
* RELEASE 0.4.0 version
119128
* add in README section for haproxy command
120129
* add support for managing some options/metric for haproxy
121-
* version is set in __init__, use that one
130+
* version is set in \_\_init\_\_, use that one
122131
* update README to reflect the changes in frontend CLI
123132
* add support for force and abort operations in frontend
124133
* order frontend options alphabetically
@@ -131,14 +140,14 @@ CHANGES
131140

132141
* RELEASE 0.3.2 version
133142
* update README for the new usage on server command
134-
* remove unused sorted_nicely function
143+
* remove unused sorted\_nicely function
135144
* support for abort also when we drain servers or set them in maintenance
136145
* update README for the new option(f) in server subcommand
137146
* add six module in requirements as it was introduced by 2819db4f
138147
* add -f option to force disabling servers
139148
* prompt user when he disables server
140149
* remove unnecessary brackets
141-
* add a read_user input function
150+
* add a read\_user input function
142151

143152
0.3.1
144153
-----
@@ -148,7 +157,7 @@ CHANGES
148157
* Fix typo in README.RST
149158
* introduce class also for MAP command as we did with dad1424
150159
* acl.py: use a proper name for the class which perform commands for ACL
151-
* include version in __init__.py
160+
* include version in \_\_init\_\_.py
152161

153162
0.3.0
154163
-----
@@ -168,15 +177,15 @@ CHANGES
168177
* fix incorrect indentation for -D in the usage
169178
* add a helper function to parse arguments
170179
* update README to reflect to the fact that -D is only part of command args
171-
* cli.py does not need to parse socket_dir
180+
* cli.py does not need to parse socket\_dir
172181

173182
0.2.1
174183
-----
175184

176185
* RELEASE 0.2.1 version
177186
* add an extra line between function to make pylint happy
178187
* Implicitly import sys rather using it from docopt space
179-
* catch the error when socket_dir doesn't exist
188+
* catch the error when socket\_dir doesn't exist
180189

181190
0.2.0
182191
-----
@@ -228,7 +237,7 @@ CHANGES
228237
* change license to Apache 2.0
229238
* switch to gmail account
230239
* remove redundant information from the headers of each module
231-
* __init__: clean useless string which was added accidentally
240+
* \_\_init\_\_: clean useless string which was added accidentally
232241
* bump version in cli.py
233242
* update ChangeLog
234243

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.5'
5+
__version__ = '0.5.6'
66
__license__ = 'Apache 2.0'
77
__copyright__ = 'Copyright 2015-2019 Pavlos Parissis'
88

0 commit comments

Comments
 (0)