From a6a22dd24cc7e1782edee456efef6d4f404630a0 Mon Sep 17 00:00:00 2001 From: David Rio Deiros Date: Tue, 16 Aug 2016 17:08:14 -0400 Subject: [PATCH] new release --- CHANGELOG.md | 3 +++ librato/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52061e3..dcad520 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +### Version 1.0.6 +* Better param encoding + ### Version 1.0.5 * Add new property for streams diff --git a/librato/__init__.py b/librato/__init__.py index 69e83d1..7828cad 100644 --- a/librato/__init__.py +++ b/librato/__init__.py @@ -23,7 +23,7 @@ import re import six -__version__ = "1.0.5" +__version__ = "1.0.6" # Defaults HOSTNAME = "metrics-api.librato.com" diff --git a/setup.py b/setup.py index 3494e8f..385b357 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "librato-metrics", - version = "1.0.5", # Update also in __init__ ; look into zest.releaser to avoid having two versions + version = "1.0.6", # Update also in __init__ ; look into zest.releaser to avoid having two versions description = "Python API Wrapper for Librato", long_description="Python Wrapper for the Librato Metrics API: http://dev.librato.com/v1/metrics", author = "Librato",