Skip to content

Commit

Permalink
add 0.3.3 to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
s-block committed Oct 23, 2014
1 parent 36da964 commit 681c90c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include LICENSE
include README
include README.md
recursive-include nested_inline/static *
recursive-include nested_inline/templates *
6 changes: 6 additions & 0 deletions README → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,9 @@ admin.py

admin.site.register(TopLevel, TopLevelAdmin)



Changelist
----------

0.3.3 - fixed bug where inlines without inlines would cause an error
10 changes: 8 additions & 2 deletions django_nested_inline.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: django-nested-inline
Version: 0.3.2
Version: 0.3.3
Summary: Recursive nesting of inline forms for Django Admin
Home-page: https://github.com/s-block/django-nested-inline
Author: Josh Rowe
Expand Down Expand Up @@ -53,7 +53,7 @@ Description: django-nested-inline

from django.contrib import admin
from nested_inline.admin import NestedStackedInline, NestedModelAdmin
from test_project.models import *
from example.models import *

class LevelThreeInline(NestedStackedInline):
model = LevelThree
Expand Down Expand Up @@ -83,6 +83,12 @@ Description: django-nested-inline
admin.site.register(TopLevel, TopLevelAdmin)



Changelist
----------

0.3.3 - fixed bug where inlines without inlines would cause an error

Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Expand Down
2 changes: 1 addition & 1 deletion django_nested_inline.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
LICENSE
MANIFEST.in
README
README.md
setup.py
django_nested_inline.egg-info/PKG-INFO
django_nested_inline.egg-info/SOURCES.txt
Expand Down
2 changes: 1 addition & 1 deletion nested_inline/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = (0, 3, 2)
__version__ = (0, 3, 3)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from nested_inline import __version__

github_url = 'https://github.com/s-block/django-nested-inline'
long_desc = open('README').read()
long_desc = open('README.md').read()

setup(
name='django-nested-inline',
Expand Down

0 comments on commit 681c90c

Please sign in to comment.