diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c5b007b..2993475 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ Changelog ========= +0.2.0 +================ + - add custom radius handling + - made accuracy and radius optional + - new parameters: alt, search2/3, slider2/3, checkboxes + 0.1.1 - March 4 2009 ==================== - fix packaging issues diff --git a/README b/README index e0d3412..81d7b14 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ Django generic view for making `Layar `_ endpoints. Provides abstract class that responds to Layar API requests in the appropriate format. By implementing two small functions it is possible to add a layer to the Layar augmented reality application for Android and iPhone. -django-layar is a project of Sunlight Labs (c) 2009. +django-layar is a project of Sunlight Labs (c) 2010. Written by James Turk Source: http://github.com/sunlightlabs/django-layar/ diff --git a/conf.py b/conf.py index 2849a30..9f09336 100644 --- a/conf.py +++ b/conf.py @@ -42,16 +42,16 @@ master_doc = 'index' # General information about the project. project = u'django-layar' -copyright = u'2009, James Turk' +copyright = u'2010, James Turk' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.1.0' +version = '0.2.0' # The full version, including alpha/beta/rc tags. -release = '0.1.0' +release = '0.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ff4fcc3..b4aa685 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = open('README').read() setup( name='django-layar', - version="0.1.0", + version="0.2.0", package_dir={'layar': 'layar'}, packages=['layar'], description='helper for publishing data to Layar augmented reality browser from Django',