From 96700c7b378c592f0b1732302c22af2fd2c87fc6 Mon Sep 17 00:00:00 2001 From: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:43:41 +0100 Subject: [PATCH] Bumped version; main is now 6.0 pre-alpha. --- django/__init__.py | 2 +- docs/conf.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/django/__init__.py b/django/__init__.py index 67d6ecc45d..19d8b64198 100644 --- a/django/__init__.py +++ b/django/__init__.py @@ -1,6 +1,6 @@ from django.utils.version import get_version -VERSION = (5, 2, 0, "alpha", 0) +VERSION = (6, 0, 0, "alpha", 0) __version__ = get_version(VERSION) diff --git a/docs/conf.py b/docs/conf.py index 9289e821fa..24f44b2474 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -118,7 +118,7 @@ copyright = "Django Software Foundation and contributors" # built documents. # # The short X.Y version. -version = "5.2" +version = "6.0" # The full version, including alpha/beta/rc tags. try: from django import VERSION, get_version @@ -135,7 +135,7 @@ else: release = django_release() # The "development version" of Django -django_next_version = "5.2" +django_next_version = "6.0" extlinks = { "bpo": ("https://bugs.python.org/issue?@action=redirect&bpo=%s", "bpo-%s"),