Skip to content

Commit

Permalink
Merge pull request #74 from hybridcluster/release-0.4.0-60
Browse files Browse the repository at this point in the history
Release 0.4.0.

Fixes #60, #75.
  • Loading branch information
itamarst committed May 15, 2014
2 parents 11c37a5 + 352e60a commit f6d9816
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
6 changes: 2 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ Features:
* Designed for JSON output, usable by Logstash/Elasticsearch.
* Supports CPython 2.7, 3.3 and PyPy.

This is a **PREVIEW** and does not guarantee version stability across versions.

Eliot is released by `HybridCluster`_ under the Apache 2.0 License and maintained by Itamar Turner-Trauring.
Eliot is released by `HybridCluster`_ under the Apache 2.0 License.

To install::

Expand All @@ -32,7 +30,7 @@ Bugs and feature requests should be filed at the project `Github page`_.
.. _Read the Docs: https://eliot.readthedocs.org/
.. _Github page: https://github.com/hybridcluster/eliot
.. _PyPI: https://pypi.python.org/pypi/eliot
.. _HybridCluster: http://www.hybridcluster.com
.. _HybridCluster: https://hybridcluster.github.io

.. image:: https://travis-ci.org/hybridcluster/eliot.png?branch=master
:target: http://travis-ci.org/hybridcluster/eliot
Expand Down
12 changes: 12 additions & 0 deletions docs/source/introduction.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Introduction
============

.. epigraph::

Suppose we turn from outside estimates of a man, to wonder, with keener
interest, what is the report of his own consciousness about his doings or
capacity: with what hindrances he is carrying on his daily labors; what
fading of hopes, or what deeper fixity of self-delusion the years are
marking off within him; and with what spirit he wrestles against universal
pressure, which will one day be too heavy for him, and bring his heart to
its final pause.

— George Eliot, *Middlemarch*

The log messages generated by a piece software tell a story: what, where, when, even why and how if you’re lucky. The readers of this story are more often than not other programs: monitoring systems, performance tools, or just filtering the messages down to something a human can actually comprehend. Unfortunately the output of most logging systems is ill-suited to being read by programs. Even worse, most logging systems omit critical information that both humans and their programs need.

Problem #1: Text is hard to search
Expand Down
12 changes: 1 addition & 11 deletions eliot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
"""
Eliot: Logging as Storytelling
Suppose we turn from outside estimates of a man, to wonder, with keener
interest, what is the report of his own consciousness about his doings or
capacity: with what hindrances he is carrying on his daily labors; what
fading of hopes, or what deeper fixity of self-delusion the years are
marking off within him; and with what spirit he wrestles against universal
pressure, which will one day be too heavy for him, and bring his heart to
its final pause.
-- George Eliot, "Middlemarch"
Eliot: Logging as Storytelling.
"""

from ._version import __version__
Expand Down
2 changes: 1 addition & 1 deletion eliot/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.4.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def read(path):
keywords="logging",
license="APL2",
packages=["eliot", "eliot.tests"],
url="https://github.com/HybridLogic/eliot/",
url="https://github.com/hybridcluster/eliot/",
maintainer='Itamar Turner-Trauring',
maintainer_email='[email protected]',
long_description=read('README.rst'),
Expand Down

0 comments on commit f6d9816

Please sign in to comment.