Browse Source

Bump version, added build script regards #13

opensearch
Roi Rav-Hon 7 years ago
parent
commit
bd75c3dc56
3 changed files with 6 additions and 1 deletions
  1. +1
    -0
      README.md
  2. +4
    -0
      build.sh
  3. +1
    -1
      setup.py

+ 1
- 0
README.md View File

@ -127,6 +127,7 @@ LOGGING = {
- appname - Your django app
## Release Notes
- 2.0.4 - Publish package as source along wheel, and supprt python3 packagin (Thanks @cchristous!)
- 2.0.3 - Fix bug that consumed more logs while draining than Logz.io's bulk limit
- 2.0.2 - Support for formatted messages (Thanks @johnraz!)
- 2.0.1 - Added __all__ to __init__.py, so support * imports


+ 4
- 0
build.sh View File

@ -0,0 +1,4 @@
rm dist/*
python setup.py sdist
python setup.py bdist_wheel
twine upload dist/*

+ 1
- 1
setup.py View File

@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(
name="logzio-python-handler",
version='2.0.3',
version='2.0.4',
description="Logging handler to send logs to your Logz.io account with bulk SSL",
keywords="logging handler logz.io bulk https",
author="roiravhon",


Loading…
Cancel
Save