diff --git a/README.md b/README.md index a449f82..2db47b0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ django-smart-autoregister [![PyPi version](https://pypip.in/v/django-smart-autoregister/badge.png)](https://crate.io/packages/django-smart-autoregister/) [![PyPi downloads](https://pypip.in/d/django-smart-autoregister/badge.png)](https://crate.io/packages/django-smart-autoregister/) -**Latest version: 0.0.2 (2015/05)** +**Latest version: 0.0.3 (2015/05)** **Django-Smart-AutoRegister** (DSA) is a Django tool that automatically configure the ModelAdmin classes of your application using some good patterns: diff --git a/Rakefile b/Rakefile index 33ca48f..7fac9ef 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,4 @@ -VERSION = "0.0.2" +VERSION = "0.0.3" def colorize(text, color) color_codes = { diff --git a/django_smart_autoregister/__init__.py b/django_smart_autoregister/__init__.py index be3d75c..6a6d170 100644 --- a/django_smart_autoregister/__init__.py +++ b/django_smart_autoregister/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -VERSION = '0.0.2' +VERSION = '0.0.3' from .auto_register import * diff --git a/docs/source/about.rst b/docs/source/about.rst index d17dad4..9ad1c6f 100644 --- a/docs/source/about.rst +++ b/docs/source/about.rst @@ -9,6 +9,12 @@ Change Log Date format: yyyy/mm/dd +Version 0.0.3 - 2015/05 +------------------------------------------------------------------------------- + * + * [Update] No more deprecated methods + + Version 0.0.2 - 2015/05 ------------------------------------------------------------------------------- * diff --git a/docs/source/overview.rst b/docs/source/overview.rst index 272e199..6a3e0ca 100644 --- a/docs/source/overview.rst +++ b/docs/source/overview.rst @@ -55,7 +55,7 @@ requirements.txt :: - django-smart-autoregister==0.0.2 + django-smart-autoregister==0.0.3 # or use the development version git+git://github.com/paulocheque/django-smart-autoregister.git#egg=django-smart-autoregister diff --git a/setup.py b/setup.py index efcacd2..417ea4c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ # Update version and save # Go to 'files' link and upload the file -VERSION = '0.0.2' +VERSION = '0.0.3' tests_require = [ 'nose>=1.3.6',