diff --git a/CHANGES.rst b/CHANGES.rst index 75d5bc3..7bd15ec 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,22 @@ CHANGES ======= +0.0.3 (2014-07-09) +------------------ + +- Fix release on PyPI (again). + [GF] + +0.0.2 (2014-07-09) +------------------ + +- Fix release on PyPI. + [GF] -0.0.1 (unreleased) +0.0.1 (2014-07-09) ------------------ -- Pickle :class:`.HaproxyLogFile` data for faster performance. +- Pickle :class::`.HaproxyLogFile` data for faster performance. [GF] - Add a way to negate the filters, so that instead of being able to filter by @@ -16,7 +27,7 @@ CHANGES and so on. See ``--list-filters`` for a complete list of them. [GF] -- Add :meth:`.HaproxyLogFile.parse_data` method to get data from data stream. +- Add :method::`.HaproxyLogFile.parse_data` method to get data from data stream. It allows you use it as a library. [bogdangi] @@ -27,10 +38,10 @@ CHANGES Bogdan's early design. [bogdangi] [GF] -- Create a new module :mod:`haproxy.filters` that holds all available filters. +- Create a new module :module::`haproxy.filters` that holds all available filters. [GF] -- Improve :meth:`.HaproxyLogFile.cmd_queue_peaks` output to not only show +- Improve :method::`.HaproxyLogFile.cmd_queue_peaks` output to not only show peaks but also when requests started to queue and when they finsihed and the amount of requests that had been queued. [GF] diff --git a/README.rst b/README.rst index 526fbbc..2962aef 100644 --- a/README.rst +++ b/README.rst @@ -170,7 +170,7 @@ This helps when looking for specific traces, like a certain IP, a path... ``ssl`` Filters log lines that are from SSL connections. See - :meth:`.HaproxyLogLine.is_https` for its limitations. + :method::`.HaproxyLogLine.is_https` for its limitations. ``slow_requests`` Filters log lines that take at least the given time to get answered (in diff --git a/setup.py b/setup.py index cf58652..1fe7346 100644 --- a/setup.py +++ b/setup.py @@ -3,23 +3,16 @@ from setuptools import setup -version = '0.0.1' +version = '0.0.3' description = 'Haproxy log analyzer that tries to gives an insight of ' \ 'what\'s going on' long_description = """{0} {1} - - -LICENSE -======= - -{2} """.format( open('README.rst').read(), open('CHANGES.rst').read(), - open('LICENSE').read(), ) setup(