Complete Django History | Python Last Updated : 12 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report Prerequisite - When to Use Django ? Comparison with other Development Stacks Django was design and developed by Lawrence journal world in 2003 and publicly released under BSD license in July 2005. Currently, DSF (Django Software Foundation) maintains its development and release cycle. Django was released on 21, July 2005. Its current stable version is 2.2.5 which was released April 1, 2019. The latest official version is 2.2.5 (LTS). Read the 2.2.5 release notes, then install it with pip: pip install Django==2.2.5 As part of the Django 3.0 development process, Django 3.0a1 is available. This release is only for users who want to try the new version and help identify remaining bugs before the 3.0 release. Please read the 3.0 release notes before using this package. Install the alpha with pip: pip install --pre django Complete History of Django Version Date Description 0.90 16 Nov 2005 0.91 11 Jan 2006 magic removal 0.96 23 Mar 2007 newforms, testing tools 1.0 3 Sep 2008 API stability, decoupled admin, unicode 1.1 29 Jul 2009 Aggregates, transaction based tests 1.2 17 May 2010 Multiple db connections, CSRF, model validation 1.3 23 Mar 2011 Timezones, in browser testing, app templates. 1.5 26 Feb 2013 Python 3 Support, configurable user model 1.6 6 Nov 2013 Dedicated to Malcolm Tredinnick, db transaction management, connection pooling. 1.7 2 Sep 2014 Migrations, application loading and configuration. 1.8 LTS 2 Sep 2014 Migrations, application loading and configuration. 1.8 LTS 1 Apr 2015 Native support for multiple template engines.Supported until at least April 2018 1.9 1 Dec 2015 Automatic password validation. New styling for admin interface. 1.10 1 Aug 2016 Full text search for PostgreSQL. New-style middleware. 1.11 LTS 1.11 LTS Last version to support Python 2.7.Supported until at least April 2020 2.0 Dec 2017 First Python 3-only release, Simplified URL routing syntax, Mobile friendly admin. Comment More infoAdvertise with us Next Article History of Python N NaveenArora Follow Improve Article Tags : Python Django-basics Practice Tags : python Similar Reads Python Compiler Using Django In this article, we will explore the creation of a Python compiler using Django. Users can input their Python code into the designated code area, and upon clicking the "Run" button, the compiler will generate the corresponding output. What is Python Compiler?A Python compiler is a program or tool th 4 min read Python | Django Admin Interface Prerequisites: Django Introduction and Installation Creating a ProjectThe Django Admin Interface is one of the most powerful features of the Django framework. It provides a ready-to-use interface for managing project data through models, allowing developers and site administrators to perform Create, 3 min read Delete Google Browser History using Python In this article, you will learn to write a Python program which will take input from the user as a keyword like Facebook, amazon, geeksforgeeks, Flipkart, youtube, etc. and then search your google chrome browser history for that keyword and if the keyword is found in any of the URL then it will dele 2 min read How to Completely Uninstall a Django App? Uninstalling a Django app involves several steps to ensure it's completely removed from your project. This Article will guide us through the process of removing the app, cleaning up related database changes, and ensuring that our project remains in good shape.When we want to remove a Django app from 3 min read History of Python Python is a widely used general-purpose, high-level programming language. It was initially designed by Guido van Rossum in 1991 and developed by Python Software Foundation. It was mainly developed to emphasize code readability, and its syntax allows programmers to express concepts in fewer lines of 5 min read How to create a Django project? Dive into the world of web development with Python by exploring the versatile Django framework. Django is a go-to for many developers due to its popularity, open-source license, and robust security features. It enables fast and efficient project development. In this tutorial, we will guide you throu 5 min read Like