Skip to content

Commit 2fa938c

Browse files
author
Frank Wall
committed
release v0.6
1 parent b95a774 commit 2fa938c

6 files changed

Lines changed: 15 additions & 21 deletions

File tree

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## v0.6.0
8+
## [v0.6.0] - 2023-12-05
99

1010
### Added
11-
* new command: showServers (API, JSON output)
12-
* new command: set/getServerWeight
13-
* new output formats: json, bootstrap (API)
11+
* New API commands: showServers, set/getServerWeight
12+
* New API output formats: json, bootstrap (OPNsense)
1413

1514
### Changed
16-
* map commands disableServer and enableServer to `set server state maint|ready`
17-
* print 'None' if no output is returned by HAProxy
18-
* decode HAProxy socket output as UTF-8 instead of ASCII
15+
* Map commands disableServer and enableServer to `set server state maint|ready`
16+
* Print 'None' if no output is returned by HAProxy
17+
* Decode HAProxy socket output as UTF-8 instead of ASCII
1918

2019
## v0.5.0 - 2015-05-24
2120

@@ -53,3 +52,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5352
## v0.1.0 - 2013-05-07
5453

5554
Initial release of haproxyctl.
55+
56+
[Unreleased]: https://github.com/markt-de/haproxy-cli/compare/v0.6.0...HEAD
57+
[v0.6.0]: https://github.com/markt-de/haproxy-cli/compare/v0.5.0...v0.6.0

conf/haproxy-cli.conf.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[global]
2+
verbose = 1
3+
socket = /var/run/haproxy.sock
4+
backend = examplebackend

conf/haproxyctl.conf.example

Lines changed: 0 additions & 4 deletions
This file was deleted.

haproxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""haproxy-cli
22
Based on: https://github.com/neurogeek/haproxyctl"""
3-
__version__ = '1.0'
3+
__version__ = '0.6'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='haproxy-cli',
6-
version='1.0',
6+
version='0.6',
77
description='A tool to interact with HAProxy',
88
author='markt.de',
99
author_email='github-oss-noreply@markt.de',

0 commit comments

Comments
 (0)