Skip to content

Commit

Permalink
Bumped version number to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
charettes committed Feb 22, 2015
1 parent 0361e7d commit e6ed7aa
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 18 deletions.
11 changes: 2 additions & 9 deletions .gitignore
@@ -1,14 +1,7 @@
*.pyc
*.swp
*.lock
*.pid
*.DS_Store
.project
.pydevproject
.settings
*.db
tests/testapp/static/*
*.pyc
dist/*
.coverage
.tox
django_dynamic_choices.egg-info
build/*
4 changes: 4 additions & 0 deletions CHANGELOG
Expand Up @@ -2,6 +2,10 @@
django-dynamic-choices changelog
============================

Version 1.0.0, 22 february 2015
--------------------------------
* Added support for Django 1.7

Version 0.3.0, 6 august 2012
--------------------------------
* Simplified grouped queryset validation
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,4 +1,4 @@
include README
include README.rst
include CHANGELOG
include LICENSE
recursive-include dynamic_choices/static *
Expand Down
2 changes: 1 addition & 1 deletion dynamic_choices/__init__.py
@@ -1 +1 @@
VERSION = (0, 3, 0)
VERSION = (1, 0, 0)
22 changes: 15 additions & 7 deletions setup.py
Expand Up @@ -18,19 +18,27 @@
long_description=long_desc,
url=github_url,
author='Simon Charette',
author_email='charette.s@gmail.com',
install_requires=['django>=1.4'],
packages=find_packages(exclude=['testapp']),
include_package_data=True,
license='MIT License',
author_email='charette.s+django-dynamic-choices@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['django admin choices dynamic'],
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=['Django>=1.4,<1.8'],
include_package_data=True,
)

0 comments on commit e6ed7aa

Please sign in to comment.