Skip to content

Commit

Permalink
Merge pull request #154 from paulocheque/release-3.1.3
Browse files Browse the repository at this point in the history
Release 3.1.3
  • Loading branch information
paulocheque committed Aug 18, 2023
2 parents afab4e3 + 4ffebea commit 5e984f7
Show file tree
Hide file tree
Showing 6 changed files with 13 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.1.2
VERSION=3.1.3

# 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.1.2 (Oct 2021)**
**Latest version: 3.1.3 (Aug 2023)**

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.1.2'
__version__ = '3.1.3'


if not django_greater_than(1, 10):
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.1.3 - 2023/08/18
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/3.1.3>
* Removed deprecation warnings: PR #150
* Fixed doc typos: PR #151
* Allow Mask objects as lessons for unique fields: PR #153

Version 3.1.2 - 2021/10/01
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/3.1.2>
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.1.2'
version = '3.1.3'
# The full version, including alpha/beta/rc tags.
release = '3.1.2'
release = '3.1.3'

# 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.1.2'
VERSION = '3.1.3'

tests_require = [
]
Expand Down

0 comments on commit 5e984f7

Please sign in to comment.