Skip to content

Commit

Permalink
Merge pull request #115 from paulocheque/release-3.0.1
Browse files Browse the repository at this point in the history
[release] Release 3.0.1
  • Loading branch information
paulocheque committed Jan 7, 2020
2 parents e4eeb07 + fdba57d commit 69b23b0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=3.0.0
VERSION=3.0.1

# Python env tasks

Expand Down
2 changes: 1 addition & 1 deletion README.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Django Dynamic Fixture
[![Coverage Status](https://coveralls.io/repos/paulocheque/django-dynamic-fixture/badge.svg?branch=master)](https://coveralls.io/r/paulocheque/django-dynamic-fixture?branch=master)
[![PyPI version](https://badge.fury.io/py/django-dynamic-fixture.svg)](https://badge.fury.io/py/django-dynamic-fixture)

**Latest version: 3.0.0 (Jan 2020)**
**Latest version: 3.0.1 (Jan 2020)**

Django Dynamic Fixture (DDF) is a complete and simple library to create dynamic model instances for testing purposes.

Expand Down
2 changes: 1 addition & 1 deletion ddf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Short alias to use: # `from ddf import *` instead of `from django_dynamic_fixture import *`
from django_dynamic_fixture import N, G, F, C, P, PRE_SAVE, POST_SAVE
from django_dynamic_fixture import N, G, F, C, P, PRE_SAVE, POST_SAVE, VERSION
from django_dynamic_fixture import new, get, fixture, teach, look_up_alias
from django_dynamic_fixture.decorators import skip_for_database, only_for_database
from django_dynamic_fixture.fdf import FileSystemDjangoTestCase
Expand Down
3 changes: 3 additions & 0 deletions django_dynamic_fixture/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
from django_dynamic_fixture.script_ddf_checkings import ddf_check_models


VERSION = '3.0.1'


if not django_greater_than('1.10'):
warnings.warn("DDF supports oficially only Django 1.11 or higher.", DeprecationWarning)

Expand Down
7 changes: 7 additions & 0 deletions docs/source/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ Change Log

Date format: yyyy/mm/dd

Version 3.0.1 - 2020/01/07
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/3.0.1>
* Fixed importing ``from ddf import ddf_check_models``
* Added a CSV report for the ddf_check_models
* Added the VERSION property in ddf: ``from ddf import VERSION``

Version 3.0.0 - 2020/01/05
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/3.0.0>
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '3.0.0'
version = '3.0.1'
# The full version, including alpha/beta/rc tags.
release = '3.0.0'
release = '3.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Update version and save
# Go to 'files' link and upload the file

VERSION = '3.0.0'
VERSION = '3.0.1'

tests_require = [
]
Expand Down

0 comments on commit 69b23b0

Please sign in to comment.