Release 1.3.1

This commit is contained in:
Wojciech Kozlowski 2017-03-16 23:24:15 +00:00
parent 93755c6cc3
commit ebd3a579cc
3 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,11 @@
Changelog
=========
1.3.1
-----
- Fixed README.
1.3.0
-----

View File

@ -57,18 +57,18 @@ Despite the name, this works for both functions and methods.
``@TraceFunction`` can take up to seven optional arguments:
- ``exception_warning`` - if ``True``, PyLg will print a warning about
every exception caught to ``stderr``.
every exception caught to ``stderr``.
- ``exception_tb_file`` - if ``True``, PyLg will write the exception
tracebacks to the log file.
tracebacks to the log file.
- ``exception_tb_stderr`` - if ``True``, PyLg will print the exception
tracebacks to ``stderr``.
tracebacks to ``stderr``.
- ``exception_exit`` - if ``True``, PyLg will force the program to
exit (and not just raise SystemExit) whenever an exception
occurs. This will happen even if the exception would be handled at a
later point.
exit (and not just raise SystemExit) whenever an exception
occurs. This will happen even if the exception would be handled at a
later point.
- ``trace_args`` - if ``True``, PyLg will log input parameters.

View File

@ -9,7 +9,7 @@ with open(path.join(pwd, 'README.rst'), encoding='utf-8') as f:
setup(
name='PyLg',
version='1.3.0',
version='1.3.1',
description='Python module to facilitate and automate the process of writing runtime logs.',
long_description=long_description,
url='https://gitlab.wojciechkozlowski.eu/wojtek/PyLg',