Skip to content

Commit

Permalink
Release version 12
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Dec 17, 2012
1 parent 34ce12d commit 538406f
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
Changelog
=========

12 (2012-12-17)
---------------

- Reload tailed files on non-linux platforms. [Jose Diaz-Gonzalez]

Python has an issue on OS X were the underlying C implementation of
`file.read()` caches the EOF, therefore causing `readlines()` to only
work once. This happens to also fail miserably when you are seeking to
the end before calling readlines.

This fix solves the issue by constantly re
reading the files changed.

Note that this also causes debug mode to be very noisy on OS X. We all
have to make sacrifices...

- Deprecate all environment variables. [Jose Diaz-Gonzalez]

This shifts configuration management into the BeaverConfig class.
Note that we currently throw a warning if you are using environment
variables.

Refs #72
Closes #60

- Warn when using deprecated ENV variables for configuration. Refs #72.
[Jose Diaz-Gonzalez]

- Minor changes for PEP8 conformance. [Jose Diaz-Gonzalez]

11 (2012-12-16)
---------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ From Github::

From PyPI::

pip install beaver==11
pip install beaver==12

Usage
=====
Expand Down
2 changes: 1 addition & 1 deletion beaver/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '11'
__version__ = '12'

0 comments on commit 538406f

Please sign in to comment.