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 Changelog
========= =========
1.3.1
-----
- Fixed README.
1.3.0 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: ``@TraceFunction`` can take up to seven optional arguments:
- ``exception_warning`` - if ``True``, PyLg will print a warning about - ``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 - ``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 - ``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 - ``exception_exit`` - if ``True``, PyLg will force the program to
exit (and not just raise SystemExit) whenever an exception exit (and not just raise SystemExit) whenever an exception
occurs. This will happen even if the exception would be handled at a occurs. This will happen even if the exception would be handled at a
later point. later point.
- ``trace_args`` - if ``True``, PyLg will log input parameters. - ``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( setup(
name='PyLg', name='PyLg',
version='1.3.0', version='1.3.1',
description='Python module to facilitate and automate the process of writing runtime logs.', description='Python module to facilitate and automate the process of writing runtime logs.',
long_description=long_description, long_description=long_description,
url='https://gitlab.wojciechkozlowski.eu/wojtek/PyLg', url='https://gitlab.wojciechkozlowski.eu/wojtek/PyLg',