Skip to content

Commit

Permalink
prepare 0.5.19; new style urls in all sub-modules, examples and docum…
Browse files Browse the repository at this point in the history
…entation
  • Loading branch information
barseghyanartur committed Dec 15, 2015
1 parent 56ab6d6 commit 67f933b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.5.19
------
2015-12-15

- New style urls everywhere.

0.5.18
------
2015-12-08
Expand Down
19 changes: 7 additions & 12 deletions ROADMAP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,16 @@ Changelog for upcoming releases
---
yyyy-mm-ddd (upcoming).

This release contains minor backwards incompatible changes, related to the
change of the name of the "simple" theme into "django_admin_style" theme.

- Fieldsets.
- The "simple" theme has been renamed to "django_admin_style".

0.6
---
yyyy-mm-ddd (upcoming).

This release contains minor backwards incompatible changes, related to the
change of the name of the "simple" theme into "django_admin_style" theme.

- Mailchimp support.
- Kube framework integration (theme).
- PureCSS framework integration (theme).
- Skeleton framework integration (theme).
- Baseline framework integration (theme).
- Amazium framework integration (theme).
- The "simple" theme has been renamed to "django_admin_style".
- Internally, make a date when form has been created. Also keep track of when
the form has been last edited.
- Form importers (and as a part of it - MailChimp integration,
which would allow to import forms from MailChimp into `django-fobi` using
a user-friendly wizard).
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
for locale_dir in locale_dirs:
locale_files += [os.path.join(locale_dir, f) for f in os.listdir(locale_dir)]

version = '0.5.18'
version = '0.5.19'

install_requires = [
'Pillow>=2.0.0',
Expand Down Expand Up @@ -114,6 +114,8 @@
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"License :: OSI Approved :: GNU Lesser General Public License v2 or "
Expand Down
4 changes: 2 additions & 2 deletions src/fobi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'django-fobi'
__version__ = '0.5.18'
__build__ = 0x000047
__version__ = '0.5.19'
__build__ = 0x000048
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2014-2015 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
Expand Down

0 comments on commit 67f933b

Please sign in to comment.