Skip to content

Commit

Permalink
Release 4.0.1 (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulocheque authored Sep 15, 2023
1 parent 5de6274 commit eb44247
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=4.0.0
VERSION=4.0.1

# Python env tasks

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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: 4.0.0 (Aug 2023)**
**Latest version: 4.0.1 (Sep 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 @@ -18,7 +18,7 @@
from django_dynamic_fixture.script_ddf_checkings import ddf_check_models


__version__ = '4.0.0'
__version__ = '4.0.1'


if not django_greater_than(4, 0):
Expand Down
34 changes: 17 additions & 17 deletions docs/source/_static/coverage.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h1>Coverage report:
</form>
<p class="text">
<a class="nav" href="https://coverage.readthedocs.io/en/7.3.0">coverage.py v7.3.0</a>,
created at 2023-08-26 20:11 -0500
created at 2023-09-15 17:34 -0500
</p>
</div>
</header>
Expand All @@ -70,10 +70,10 @@ <h1>Coverage report:
</tr>
<tr class="file">
<td class="name left"><a href="d_194004471fb5367f_ddf_py.html">django_dynamic_fixture/ddf.py</a></td>
<td>399</td>
<td>405</td>
<td>36</td>
<td>9</td>
<td class="right" data-ratio="363 399">91%</td>
<td class="right" data-ratio="369 405">91%</td>
</tr>
<tr class="file">
<td class="name left"><a href="d_194004471fb5367f_decorators_py.html">django_dynamic_fixture/decorators.py</a></td>
Expand Down Expand Up @@ -189,10 +189,10 @@ <h1>Coverage report:
</tr>
<tr class="file">
<td class="name left"><a href="d_194004471fb5367f_global_settings_py.html">django_dynamic_fixture/global_settings.py</a></td>
<td>52</td>
<td>5</td>
<td>49</td>
<td>3</td>
<td>0</td>
<td class="right" data-ratio="47 52">90%</td>
<td class="right" data-ratio="46 49">94%</td>
</tr>
<tr class="file">
<td class="name left"><a href="d_194004471fb5367f_models_py.html">django_dynamic_fixture/models.py</a></td>
Expand All @@ -210,10 +210,10 @@ <h1>Coverage report:
</tr>
<tr class="file">
<td class="name left"><a href="d_194004471fb5367f_models_test_py.html">django_dynamic_fixture/models_test.py</a></td>
<td>286</td>
<td>291</td>
<td>13</td>
<td>0</td>
<td class="right" data-ratio="273 286">95%</td>
<td class="right" data-ratio="278 291">96%</td>
</tr>
<tr class="file">
<td class="name left"><a href="d_194004471fb5367f_models_third_party_py.html">django_dynamic_fixture/models_third_party.py</a></td>
Expand Down Expand Up @@ -245,10 +245,10 @@ <h1>Coverage report:
</tr>
<tr class="file">
<td class="name left"><a href="d_2810ef72909b6803_test_ddf_py.html">django_dynamic_fixture/tests/test_ddf.py</a></td>
<td>393</td>
<td>8</td>
<td>390</td>
<td>7</td>
<td>0</td>
<td class="right" data-ratio="385 393">98%</td>
<td class="right" data-ratio="383 390">98%</td>
</tr>
<tr class="file">
<td class="name left"><a href="d_2810ef72909b6803_test_ddf_checkings_py.html">django_dynamic_fixture/tests/test_ddf_checkings.py</a></td>
Expand Down Expand Up @@ -294,10 +294,10 @@ <h1>Coverage report:
</tr>
<tr class="file">
<td class="name left"><a href="d_2810ef72909b6803_test_ddf_teaching_and_lessons_py.html">django_dynamic_fixture/tests/test_ddf_teaching_and_lessons.py</a></td>
<td>143</td>
<td>158</td>
<td>0</td>
<td>0</td>
<td class="right" data-ratio="143 143">100%</td>
<td class="right" data-ratio="158 158">100%</td>
</tr>
<tr class="file">
<td class="name left"><a href="d_2810ef72909b6803_test_decorators_py.html">django_dynamic_fixture/tests/test_decorators.py</a></td>
Expand Down Expand Up @@ -359,10 +359,10 @@ <h1>Coverage report:
<tfoot>
<tr class="total">
<td class="name left">Total</td>
<td>3400</td>
<td>266</td>
<td>3420</td>
<td>263</td>
<td>25</td>
<td class="right" data-ratio="3134 3400">92%</td>
<td class="right" data-ratio="3157 3420">92%</td>
</tr>
</tfoot>
</table>
Expand All @@ -374,7 +374,7 @@ <h1>Coverage report:
<div class="content">
<p>
<a class="nav" href="https://coverage.readthedocs.io/en/7.3.0">coverage.py v7.3.0</a>,
created at 2023-08-26 20:11 -0500
created at 2023-09-15 17:34 -0500
</p>
</div>
<aside class="hidden">
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 4.0.1 - 2023/09/15
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/4.0.1>
* Reuse lessons in Proxy models
* https://github.com/paulocheque/django-dynamic-fixture/pull/161

Version 4.0.0 - 2023/08/26
-------------------------------------------------------------------------------
* <http://pypi.python.org/pypi/django-dynamic-fixture/4.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 @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = '4.0.0'
version = '4.0.1'
# The full version, including alpha/beta/rc tags.
release = '4.0.0'
release = '4.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
@@ -1,7 +1,7 @@
from pathlib import Path
from setuptools import setup, find_packages

VERSION = '4.0.0'
VERSION = '4.0.1'

tests_require = []

Expand Down

0 comments on commit eb44247

Please sign in to comment.