prep for release 0.4.0

This commit is contained in:
Daniel Greenfeld 2013-06-30 11:38:39 +02:00
parent c036fd723f
commit 00af2cfbac
4 changed files with 24 additions and 5 deletions

View file

@ -54,10 +54,11 @@ Our goal is to make this API work:
# myapp/admin2.py
# Import your custom models
from .models import Post, Comment
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth.models import User
from .models import Post, Comment
import djadmin2
@ -113,6 +114,23 @@ Screenshots
History
=========
0.4.0 (2013-06-30)
* Implemented both Function- and Class-based Action views
* Implemented ModelAdmin2.list_display
* Implemented ModelAdmin2.fieldsets
* Dropdown widget now displays the selected choice
* Added support for callables in ModelAdmin2.list_display
* Added screenshots to README
* Added second example project
* Fixed breadcrumbs
* Default theme: Proper closing of template and media blocks
* Default theme: Standardized indentation in default theme templates
* Default theme: Pointed to CDN for JQuery
* Default theme: Added basic style for login form
* Default theme: Internationalized all text strings
0.3.0 (2013-05-31)
* HTML5 forms via floppyforms.

View file

@ -1,4 +1,4 @@
__version__ = '0.3.0'
__version__ = '0.4.0'
__author__ = 'Daniel Greenfeld & Contributors'

View file

@ -55,9 +55,9 @@ copyright = u'2013, Daniel Greenfeld'
# built documents.
#
# The short X.Y version.
version = '0.3'
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.3.0'
release = '0.4.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -29,10 +29,11 @@ Our goal is to make this API work:
# myapp/admin2.py
# Import your custom models
from .models import Post, Comment
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth.models import User
from .models import Post, Comment
import djadmin2