From f140436e3a7295740f3d1a9e4adb9e1ae27278bb Mon Sep 17 00:00:00 2001 From: James Bennett Date: Sat, 11 Sep 2010 06:49:33 +0000 Subject: [PATCH] [1.2.X] Bump to 1.2.3. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13749 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django/__init__.py b/django/__init__.py index 48815232f8..6a437e7000 100644 --- a/django/__init__.py +++ b/django/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 2, 2, 'final', 0) +VERSION = (1, 2, 3, 'final', 0) def get_version(): version = '%s.%s' % (VERSION[0], VERSION[1]) diff --git a/setup.py b/setup.py index 938849aa6d..f46d31a231 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ setup( author = 'Django Software Foundation', author_email = 'foundation@djangoproject.com', description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.', - download_url = 'http://media.djangoproject.com/releases/1.2/Django-1.2.2.tar.gz', + download_url = 'http://media.djangoproject.com/releases/1.2/Django-1.2.3.tar.gz', packages = packages, cmdclass = cmdclasses, data_files = data_files,