Browse Source

Version bump, and include test package

opensearch
Roi Rav-Hon 7 years ago
parent
commit
8b109ce061
2 changed files with 3 additions and 2 deletions
  1. +1
    -0
      README.md
  2. +2
    -2
      setup.py

+ 1
- 0
README.md View File

@ -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!)


+ 2
- 2
setup.py View File

@ -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"
],


Loading…
Cancel
Save