mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-03-16 22:10:28 +00:00
Prepeat 0.19.9
This commit is contained in:
parent
a255dfeb27
commit
d5eda65764
4 changed files with 10 additions and 2 deletions
|
|
@ -15,6 +15,12 @@ are used for versioning (schema follows below):
|
||||||
0.3.4 to 0.4).
|
0.3.4 to 0.4).
|
||||||
- All backwards incompatible changes are mentioned in this document.
|
- All backwards incompatible changes are mentioned in this document.
|
||||||
|
|
||||||
|
0.19.9
|
||||||
|
------
|
||||||
|
2023-07-11
|
||||||
|
|
||||||
|
- Added ``email_repeat`` plugin.
|
||||||
|
|
||||||
0.19.8
|
0.19.8
|
||||||
------
|
------
|
||||||
2023-01-30
|
2023-01-30
|
||||||
|
|
|
||||||
|
|
@ -1929,6 +1929,8 @@ It's possible to provide `Dynamic initial values`_ for text elements.
|
||||||
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/duration>`_
|
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/duration>`_
|
||||||
- `Email*
|
- `Email*
|
||||||
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/email/>`_
|
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/email/>`_
|
||||||
|
- `Email repeat*
|
||||||
|
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/email_repeat/>`_
|
||||||
- `File
|
- `File
|
||||||
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/file/>`_
|
<https://github.com/barseghyanartur/django-fobi/tree/main/src/fobi/contrib/plugins/form_elements/fields/file/>`_
|
||||||
- `Float
|
- `Float
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -3,7 +3,7 @@ import os
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
version = "0.19.8"
|
version = "0.19.9"
|
||||||
|
|
||||||
# ***************************************************************************
|
# ***************************************************************************
|
||||||
# ************************** Django version *********************************
|
# ************************** Django version *********************************
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
__title__ = "django-fobi"
|
__title__ = "django-fobi"
|
||||||
__version__ = "0.19.8"
|
__version__ = "0.19.9"
|
||||||
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
|
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
|
||||||
__copyright__ = "2014-2022 Artur Barseghyan"
|
__copyright__ = "2014-2022 Artur Barseghyan"
|
||||||
__license__ = "GPL 2.0/LGPL 2.1"
|
__license__ = "GPL 2.0/LGPL 2.1"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue