Skip to content

Commit

Permalink
Merge pull request #118 from paulocheque/release-3.0.2
Browse files Browse the repository at this point in the history
[release] 3.0.2
  • Loading branch information
paulocheque committed Jan 10, 2020
2 parents b789bf7 + 29fc8ba commit bd253b5
Show file tree
Hide file tree
Showing 6 changed files with 12 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.1
VERSION=3.0.2

# 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 @@ -8,7 +8,7 @@ Django Dynamic Fixture
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-dynamic-fixture)
![PyPI - Downloads](https://img.shields.io/pypi/dm/django-dynamic-fixture)

**Latest version: 3.0.1 (Jan 2020)**
**Latest version: 3.0.2 (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 django_dynamic_fixture/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from django_dynamic_fixture.script_ddf_checkings import ddf_check_models


__version__ = '3.0.1'
__version__ = '3.0.2'


if not django_greater_than('1.10'):
Expand Down
6 changes: 6 additions & 0 deletions docs/source/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Change Log

Date format: yyyy/mm/dd

Version 3.0.2 - 2020/01/10
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/3.0.2>
* Changed ``VERSION`` to ``__version__``: ``from ddf import __version``
* Changed ``lesson`` to ``ddf_lesson``: ``G(Model, ddf_lesson='...')``

Version 3.0.1 - 2020/01/07
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/3.0.1>
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.1'
version = '3.0.2'
# The full version, including alpha/beta/rc tags.
release = '3.0.1'
release = '3.0.2'

# 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.1'
VERSION = '3.0.2'

tests_require = [
]
Expand Down

0 comments on commit bd253b5

Please sign in to comment.