Skip to content

Commit

Permalink
release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mediocretes committed Mar 22, 2017
1 parent aafdca1 commit edfd5f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.2.0 [March 22, 2016]
* Make logging configurable and silence it by default [[#14](https://github.com/Instrumental/instrumental_agent-python/pull/14)]

### 1.1.0 [August 8, 2016]
* **BUGFIX**: Preserve timezone information when sending a time with a metric [[#11](https://github.com/Instrumental/instrumental_agent-python/pull/11)]
* make handshake version string match pattern of other 1st-party agents [[#12](https://github.com/Instrumental/instrumental_agent-python/pull/12)]
Expand Down
2 changes: 1 addition & 1 deletion instrumental_agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class Agent(object):
max_buffer = 5000
max_reconnect_delay = 15
exit_timeout = 1
version = "1.1.0"
version = "1.2.0"

def __init__(self, api_key, collector="collector.instrumentalapp.com:8001", enabled=True, secure=True, verify_cert=True, synchronous=False):
self.logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

NAME = "instrumental_agent"
VERSION = "1.1.0"
VERSION = "1.2.0"


# To install the library, run the following
Expand Down

0 comments on commit edfd5f1

Please sign in to comment.