From 65e3f60a63b47b04467bf8210e7614f90d986e29 Mon Sep 17 00:00:00 2001 From: mixxorz Date: Wed, 13 May 2015 18:39:30 +0800 Subject: [PATCH 1/3] Updated readme --- README.rst | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index c72e2f9..414c5b0 100644 --- a/README.rst +++ b/README.rst @@ -14,6 +14,7 @@ Features - Use unittest + Django assert library - Use behave's command line arguments - Use behave's configuration file +- Fixture loading Getting started --------------- @@ -23,7 +24,13 @@ Getting started Support ------- -behave-django is tested on Django 1.7.7 and 1.8 on Python 2.7, 3.3 and 3.4. However, it may work with other setups. +behave-django is tested on: + +Django 1.4.20, 1.5.12, 1.6.11, 1.7.7, 1.8 + +Python 2.6, 2.7, 3.3, 3.4 + +It should work on everything, basically. Contributing ------------ @@ -33,6 +40,13 @@ Contributing Changelog --------- +0.1.3 +^^^^^ + +- FEATURE: Fixture loading. You can now load your fixtures by setting :code:`context.fixtures`. +- BUGFIX: behave-django now supports all versions of Django +- BUGFIX: The behave command should not correctly return non-zero exit codes when a test fails. + 0.1.2 ^^^^^ From bc71cbb98c6dba48cb048e504100f8348343e760 Mon Sep 17 00:00:00 2001 From: mixxorz Date: Wed, 13 May 2015 18:40:05 +0800 Subject: [PATCH 2/3] Bumped version to 0.1.3 --- behave_django/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/behave_django/__init__.py b/behave_django/__init__.py index 2fdae37..3857d03 100644 --- a/behave_django/__init__.py +++ b/behave_django/__init__.py @@ -1 +1 @@ -# Release 0.1.2 +# Release 0.1.3 diff --git a/setup.py b/setup.py index 25ceeff..84cad18 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='behave-django', - version='0.1.2', + version='0.1.3', packages=find_packages(exclude=['test*']), include_package_data=True, license='MIT License', From 729642c14bde2b64a678065e9f0d28f69cb14f58 Mon Sep 17 00:00:00 2001 From: mixxorz Date: Wed, 13 May 2015 18:47:50 +0800 Subject: [PATCH 3/3] Restructured how the changelog is managed --- HISTORY.rst | 39 +++++++++++++++++++++++++++++++++++++++ README.rst | 27 --------------------------- 2 files changed, 39 insertions(+), 27 deletions(-) create mode 100644 HISTORY.rst diff --git a/HISTORY.rst b/HISTORY.rst new file mode 100644 index 0000000..dbcfae9 --- /dev/null +++ b/HISTORY.rst @@ -0,0 +1,39 @@ +Release History +--------------- + +0.1.3 (2015-05-13) +++++++++++++++++++ + +**Features and Improvements** + +- Fixture loading. You can now load your fixtures by setting :code:`context.fixtures`. +- behave-django now supports all versions of Django + +**Bugfixes** + +- The behave command should not correctly return non-zero exit codes when a test fails. + +0.1.2 (2015-05-13) +++++++++++++++++++ + +**Features and Improvements** + +- You can now have a :code:`.behaverc` in your project's root directory. You can specify where your feature directories are in this file, among other things. See the `behave docs on configuration files `__. +- Removed BEHAVE\_FEATURES setting in favor of using behave's configuration file + +0.1.1 (2015-05-13) +++++++++++++++++++ + +**Features and Improvements** + +- Behave management command now accepts behave command line arguments +- BEHAVE\_FEATURES settings added for multiple feature directories + +**Bugfixes** + +- Removed test apps and projects from the release package + +0.1.0 (2015-05-13) +++++++++++++++++++ + +- Initial release diff --git a/README.rst b/README.rst index 414c5b0..06f877c 100644 --- a/README.rst +++ b/README.rst @@ -37,33 +37,6 @@ Contributing `Read the quick contributing guide `__ -Changelog ---------- - -0.1.3 -^^^^^ - -- FEATURE: Fixture loading. You can now load your fixtures by setting :code:`context.fixtures`. -- BUGFIX: behave-django now supports all versions of Django -- BUGFIX: The behave command should not correctly return non-zero exit codes when a test fails. - -0.1.2 -^^^^^ - -- FEATURE: You can now have a :code:`.behaverc` in your project's root directory. You can specify where your feature directories are in this file, among other things. See the `behave docs on configuration files `__. -- FEATURE: Removed BEHAVE\_FEATURES setting in favor of using behave's configuration file - -0.1.1 -^^^^^ - -- FEATURE: Behave management command now accepts behave command line arguments -- FEATURE: BEHAVE\_FEATURES settings added for multiple feature directories -- BUGFIX: Removed test apps and projects from the release package - -0.1.0 -^^^^^ - -- Initial release .. |Build Status| image:: https://travis-ci.org/mixxorz/behave-django.svg?branch=master :target: https://travis-ci.org/mixxorz/behave-django