Skip to content

Commit ae94800

Browse files
committed
Merge branch 'release-0.2.0'
2 parents b276af9 + d944dd1 commit ae94800

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Release History
22
---------------
33

4+
0.2.0 (2015-06-27)
5+
++++++++++++++++++
6+
7+
**Features and Improvements**
8+
9+
- 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.
10+
- 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>`__.
11+
12+
**Bugfixes**
13+
14+
- Calling `python manage.py behave --dry-run` does not create a test database any longer.
15+
416
0.1.4 (2015-06-08)
517
++++++++++++++++++
618

behave_django/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Behave BDD integration for Django"""
22

3-
__version__ = '0.1.4'
3+
__version__ = '0.2.0'
44
__license__ = 'MIT License'

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
author_email='[email protected]',
2424
maintainer='Mitchel Cabuloy',
2525
maintainer_email='[email protected]',
26-
install_requires=open('requirements.txt').read().split(),
26+
install_requires=[
27+
'behave',
28+
'Django>=1.4'
29+
],
2730
classifiers=[
2831
'Development Status :: 3 - Alpha',
2932
'Environment :: Console',

0 commit comments

Comments
 (0)