From 8b109ce061ce23402a605a6788fb10ee870af712 Mon Sep 17 00:00:00 2001 From: Roi Rav-Hon Date: Wed, 9 May 2018 15:10:56 +0300 Subject: [PATCH] Version bump, and include test package --- README.md | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa27ff3..b8d33ac 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ LOGGING = { - appname - Your django app ## Release Notes +- 2.0.9 - Support extra fields on exceptions too (Thanks @asafc64!) - 2.0.8 - Various PEP8, testings and logging changes (Thanks @nir0s!) - 2.0.7 - Make sure sending thread is alive after fork (Thanks @jo-tham!) - 2.0.6 - Add "flush()" method to manually drain the queue (Thanks @orenmazor!) diff --git a/setup.py b/setup.py index d83548a..f07b898 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ from setuptools import setup, find_packages setup( name="logzio-python-handler", - version='2.0.8', + version='2.0.9', description="Logging handler to send logs to your Logz.io account with bulk SSL", keywords="logging handler logz.io bulk https", author="roiravhon", author_email="roi@logz.io", url="https://github.com/logzio/logzio-python-handler/", license="Apache License 2", - packages=find_packages(exclude=["tests"]), + packages=find_packages(), install_requires=[ "requests" ],