Skip to content

Commit

Permalink
release v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Wall committed Dec 5, 2023
1 parent b95a774 commit 2fa938c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 21 deletions.
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

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

## v0.6.0
## [v0.6.0] - 2023-12-05

### Added
* new command: showServers (API, JSON output)
* new command: set/getServerWeight
* new output formats: json, bootstrap (API)
* New API commands: showServers, set/getServerWeight
* New API output formats: json, bootstrap (OPNsense)

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

## v0.5.0 - 2015-05-24

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

Initial release of haproxyctl.

[Unreleased]: https://github.com/markt-de/haproxy-cli/compare/v0.6.0...HEAD
[v0.6.0]: https://github.com/markt-de/haproxy-cli/compare/v0.5.0...v0.6.0
4 changes: 4 additions & 0 deletions conf/haproxy-cli.conf.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[global]
verbose = 1
socket = /var/run/haproxy.sock
backend = examplebackend
4 changes: 0 additions & 4 deletions conf/haproxyctl.conf.example

This file was deleted.

2 changes: 1 addition & 1 deletion haproxy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""haproxy-cli
Based on: https://github.com/neurogeek/haproxyctl"""
__version__ = '1.0'
__version__ = '0.6'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name='haproxy-cli',
version='1.0',
version='0.6',
description='A tool to interact with HAProxy',
author='markt.de',
author_email='[email protected]',
Expand Down

0 comments on commit 2fa938c

Please sign in to comment.