Skip to content

Commit

Permalink
Updates for 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmavirus24 committed Apr 18, 2015
1 parent a831f3d commit 2a6fdb1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
History
=======

0.4.2 - 2015-04-18
------------------

- Fix issue #58 reported by @bboe

Multiple cookies were not being properly stored or replayed after being
recorded.

- @leighlondon converted ``__all__`` to a tuple

0.4.1 - 2014-09-24
------------------

Expand Down
2 changes: 1 addition & 1 deletion betamax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
__copyright__ = 'Copyright 2013-2014 Ian Cordasco'
__license__ = 'Apache 2.0'
__title__ = 'betamax'
__version__ = '0.4.1'
__version__ = '0.4.2'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ deps =
flake8-docstrings
commands = flake8 {posargs} betamax

[testenv:release]
deps =
twine >= 1.4.0
wheel
commands =
python setup.py sdist bdist_wheel
twine upload {posargs} dist/*

[pytest]
addopts = -q
norecursedirs = *.egg .git .* _*

0 comments on commit 2a6fdb1

Please sign in to comment.