From d73ebb88cf9a7947bc369174d68f7eaa8a640b67 Mon Sep 17 00:00:00 2001 From: "Gavin M. Roy" Date: Wed, 13 May 2015 13:49:57 -0400 Subject: [PATCH] Release 0.5.1 --- consulate/__init__.py | 2 +- docs/history.rst | 2 ++ setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/consulate/__init__.py b/consulate/__init__.py index f27791c..36a5176 100644 --- a/consulate/__init__.py +++ b/consulate/__init__.py @@ -2,7 +2,7 @@ Consulate: A client library for Consul """ -__version__ = '0.5.0' +__version__ = '0.5.1' import logging try: diff --git a/docs/history.rst b/docs/history.rst index c4ebd85..71c58f3 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -1,5 +1,7 @@ Version History =============== + - 0.5.1 - released *2015-05-13* + - Fix a regression with consualte cli introduced with UnixSockets (#36) - Dan Tracy - 0.5.0 - released *2015-05-13* - Add ability to talk to Consul via Unix Socket - Remove the automatic JSON deserialization attempt of KV values diff --git a/setup.py b/setup.py index 1a2e36d..9ea979c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ install_requires.append('argparse') setup(name='consulate', - version='0.5.0', + version='0.5.1', description="A Client library for the Consul", maintainer="Gavin M. Roy", maintainer_email="gavinr@aweber.com",