From b0775068d0a43e99887c2fc5a4a5c4bf0d39ce8f Mon Sep 17 00:00:00 2001 From: Maxime Petazzoni Date: Mon, 28 Nov 2016 19:52:52 -0800 Subject: [PATCH] Bump version to 1.0.12 --- CHANGELOG.md | 18 +++++++++++------- signalfx/version.py | 2 +- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71ae3a0..4f7e001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ This file documents important changes to the SignalFx Python client library. +- [[1.0.12]- 2016-11-28: Detector APIs](#1012---2016-11-28-detector-apis) - [[1.0.11]- 2016-11-23: Long value support](#1011---2016-11-23-long-value-support) - [[1.0.10]- 2016-11-21: Unicode event properties fix](#1010---2016-11-21-unicode-event-properties-fix) - [[1.0.9] - 2016-10-26: Datapoints queue draining fix](#109---2016-10-26-datapoints-queue-draining-fix) @@ -10,20 +11,23 @@ This file documents important changes to the SignalFx Python client library. - [[1.0.5] - 2016-09-29: Python 3 compatibility](#105---2016-09-29-python-3-compatibility) - [[1.0.1] - 2016-06-02: Support for SignalFlow API](#101---2016-06-02-support-for-signalflow-api) +#### [1.0.12] - 2016-11-28: Detector APIs + +Added support for managing SignalFlow V2 detectors via the REST client. + #### [1.0.11] - 2016-11-23: Long value support -`long` type metric values were previously unsupported. This release -allows int64 values and property values as defined by the protocol buffer. -Values greater than or equal to `-(2**63)` and less than or equal to -`(2**63)-1`. Values exceeding the specified boundaries will raise a -``ValueError`` exception. +`long` type metric values were previously unsupported. This release allows +int64 values and property values as defined by the protocol buffer. Values +greater than or equal to `-(2**63)` and less than or equal to `(2**63)-1`. +Values exceeding the specified boundaries will raise a ``ValueError`` exception. -Boolean property values were previously dispatched as integer values. This +Boolean property values were previously dispatched as integer values. This release fixes this and emits boolean property values as a boolean type. #### [1.0.10] - 2016-11-21: Unicode event properties fix -Unicode strings were previously unsupported for event properties. This release +Unicode strings were previously unsupported for event properties. This release allows event properties to be assigned unicode strings. #### [1.0.9] - 2016-10-26: Datapoints queue draining fix diff --git a/signalfx/version.py b/signalfx/version.py index 0f7052c..d502f9e 100644 --- a/signalfx/version.py +++ b/signalfx/version.py @@ -1,4 +1,4 @@ # Copyright (C) 2015-2016 SignalFx, Inc. All rights reserved. name = 'signalfx' -version = '1.0.11' +version = '1.0.12'