Skip to content

Commit

Permalink
Release to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Jul 11, 2014
1 parent 5361b1f commit ed9c45b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
21 changes: 16 additions & 5 deletions 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
Expand All @@ -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]

Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -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
Expand Down
9 changes: 1 addition & 8 deletions setup.py
Expand Up @@ -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(
Expand Down

0 comments on commit ed9c45b

Please sign in to comment.