Skip to content

Commit 7c2395d

Browse files
committed
Release 0.0.9
1 parent ec845f1 commit 7c2395d

8 files changed

+103
-5
lines changed

docs/foundation_formtags.rst

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
foundation_formtags package
2+
===========================
3+
4+
Subpackages
5+
-----------
6+
7+
.. toctree::
8+
9+
foundation_formtags.templatetags
10+
foundation_formtags.tests
11+
12+
Module contents
13+
---------------
14+
15+
.. automodule:: foundation_formtags
16+
:members:
17+
:undoc-members:
18+
:show-inheritance:
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
foundation_formtags.templatetags package
2+
========================================
3+
4+
Submodules
5+
----------
6+
7+
foundation_formtags.templatetags.foundation_formtags module
8+
-----------------------------------------------------------
9+
10+
.. automodule:: foundation_formtags.templatetags.foundation_formtags
11+
:members:
12+
:undoc-members:
13+
:show-inheritance:
14+
15+
16+
Module contents
17+
---------------
18+
19+
.. automodule:: foundation_formtags.templatetags
20+
:members:
21+
:undoc-members:
22+
:show-inheritance:

docs/foundation_formtags.tests.rst

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
foundation_formtags.tests package
2+
=================================
3+
4+
Submodules
5+
----------
6+
7+
foundation_formtags.tests.forms module
8+
--------------------------------------
9+
10+
.. automodule:: foundation_formtags.tests.forms
11+
:members:
12+
:undoc-members:
13+
:show-inheritance:
14+
15+
foundation_formtags.tests.tests module
16+
--------------------------------------
17+
18+
.. automodule:: foundation_formtags.tests.tests
19+
:members:
20+
:undoc-members:
21+
:show-inheritance:
22+
23+
24+
Module contents
25+
---------------
26+
27+
.. automodule:: foundation_formtags.tests
28+
:members:
29+
:undoc-members:
30+
:show-inheritance:

docs/modules.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
foundation_formtags
2+
===================
3+
4+
.. toctree::
5+
:maxdepth: 4
6+
7+
foundation_formtags

docs/project_info/authors.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Core Committers
1212

1313
* Lendl Smith (`@ilendl2`_)
1414
* Parbhat Puri (`@parbhat`_)
15-
15+
* Daniel Andrilik (`@andrlik`_)
1616

1717
Contributors
1818
------------
@@ -22,4 +22,5 @@ None yet. Why not be the first?
2222

2323
.. _`@chrisdev`: https://github.com/chrisdev
2424
.. _`@ilendl2`: https://github.com/ilendl2
25-
.. _`@parbhat`: https://github.com/parbhat
25+
.. _`@parbhat`: https://github.com/parbhat
26+
.. _`@andrlik`: https://github.com/andrlik

docs/project_info/history.rst

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
History
2-
========
2+
=======
3+
4+
0.0.9 (2017-06-05)
5+
-------------------
6+
7+
* Cleaned up travis configuration for tox to improve testing
8+
9+
0.0.8 (2017-05-09)
10+
-------------------
11+
12+
* Make it Compatible with Django 1.11
13+
14+
0.0.7 (2016-09-25)
15+
-------------------
16+
17+
* Make Compatible with Django 1.10
18+
* Minimum version is now Django 1.8. For earlier versions of Django use 0.0.6
319

420
0.0.6 (2016-08-05)
521
------------------
@@ -10,3 +26,4 @@ Fix for checkbox rendering and New error class for Non field errors in Foundatio
1026
---------------------
1127

1228
* First release on PyPI.
29+

setup.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[bumpversion]
2-
current_version = 0.0.8
2+
current_version = 0.0.9
33

44
[wheel]
55
universal = 1
66

77
[flake8]
88
exclude = docs/*
99

10+
[bumpversion:file:setup.py]
11+

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4+
__version__ = '0.0.9'
45

56
try:
67
from setuptools import setup
@@ -26,7 +27,7 @@
2627

2728
setup(
2829
name='django-foundation-formtags',
29-
version='0.0.8',
30+
version=__version__,
3031
description="Templatetags to add Zurb Foundation support to Django Forms",
3132
long_description=readme + '\n\n' + history,
3233
author="Christopher Clarke",

0 commit comments

Comments
 (0)