Skip to content

Commit

Permalink
Bump version and set release date.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlavin committed Oct 22, 2014
1 parent 80ac696 commit 3907e04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import datetime
import sys, os
import selectable

Expand Down Expand Up @@ -42,7 +43,7 @@

# General information about the project.
project = u'Django-Selectable'
copyright = u'2011-2014, Mark Lavin'
copyright = u'2011-%s, Mark Lavin' % datetime.date.today().year

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion docs/releases.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release Notes
==================

v0.9.0 (Released TBD)
v0.9.0 (Released 2014-10-21)
--------------------------------------

This release primarily addresses incompatibility with Django 1.7. The app-loading refactor both
Expand Down
2 changes: 1 addition & 1 deletion selectable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"Auto-complete selection widgets using Django and jQuery UI."


__version__ = '0.9.0dev'
__version__ = '0.9.0'

default_app_config = 'selectable.apps.SelectableConfig'

0 comments on commit 3907e04

Please sign in to comment.