Skip to content

Commit 553528a

Browse files
committed
update version
1 parent e9f9e75 commit 553528a

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

formit/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import absolute_import, unicode_literals
3+
4+
"""
5+
Release logic:
6+
1. Bump the __version__.
7+
2. git add formit/__init__.py
8+
3. git commit -m 'Bump to <version>'
9+
4. git push
10+
5. Make sure all tests pass on https://travis-ci.org/dinoperovic/django-formit
11+
6. git tag <version>
12+
7. git push --tags
13+
8. python setup.py sdist
14+
9. twine upload dist/django-formit-<version>.tar.gz
15+
10. Done!
16+
"""
17+
__version__ = '0.1.0'
18+
19+
default_app_config = 'formit.apps.FormitConfig'

formit/apps.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import absolute_import, unicode_literals
3+
4+
from django.apps import AppConfig
5+
from django.utils.translation import ugettext_lazy as _
6+
7+
8+
class FormitConfig(AppConfig):
9+
name = 'formit'
10+
verbose_name = _('Formit')

0 commit comments

Comments
 (0)