Skip to content

Commit

Permalink
Bump version to 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetazzoni committed Nov 29, 2016
1 parent 3e5f611 commit b077506
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion signalfx/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2015-2016 SignalFx, Inc. All rights reserved.

name = 'signalfx'
version = '1.0.11'
version = '1.0.12'

0 comments on commit b077506

Please sign in to comment.