Skip to content

Commit

Permalink
Merge branch 'release-0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mixxorz committed Jun 27, 2015
2 parents b276af9 + d944dd1 commit ae94800
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
12 changes: 12 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Release History
---------------

0.2.0 (2015-06-27)
++++++++++++++++++

**Features and Improvements**

- Integration with `behave` is now done via monkey patching. Including the `environment.before_scenario()` and `environment.after_scenario()` function calls in your `environment.py` file is no longer needed.
- A new CLI option, `--use-existing-database`, has been added. See the `usage docs <https://pythonhosted.org/behave-django/usage.html#behave-command-line-options>`__.

**Bugfixes**

- Calling `python manage.py behave --dry-run` does not create a test database any longer.

0.1.4 (2015-06-08)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion behave_django/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Behave BDD integration for Django"""

__version__ = '0.1.4'
__version__ = '0.2.0'
__license__ = 'MIT License'
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
author_email='[email protected]',
maintainer='Mitchel Cabuloy',
maintainer_email='[email protected]',
install_requires=open('requirements.txt').read().split(),
install_requires=[
'behave',
'Django>=1.4'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
Expand Down

0 comments on commit ae94800

Please sign in to comment.