Bump version 0.0.4.

This commit is contained in:
juanifioren 2015-04-22 11:53:19 -03:00
parent 303df2b3d2
commit e773083e7d
3 changed files with 6 additions and 2 deletions

View file

@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
### [Unreleased]
### [0.0.4] - 2015-04-22
#### Added
- Initial migrations.

View file

@ -1,5 +1,7 @@
from django.contrib import admin
from .models import Client, Code, Token, UserInfo
from oidc_provider.models import Client, Code, Token, UserInfo
admin.site.register(Client)
admin.site.register(Code)

View file

@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-oidc-provider',
version='0.0.3',
version='0.0.4',
packages=[
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
'oidc_provider/lib/utils', 'oidc_provider/tests',