<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/setup.py, branch 2.0</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=2.0</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=2.0'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2017-12-02T15:03:18Z</updated>
<entry>
<title>[2.0.x] Bumped version for 2.0 release.</title>
<updated>2017-12-02T15:03:18Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-12-02T15:03:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b99221b8bb2a4cd7fd5ac6e5f03e8eb1953d6384'/>
<id>urn:sha1:b99221b8bb2a4cd7fd5ac6e5f03e8eb1953d6384</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[2.0.x] Bumped version for 2.0 beta 1.</title>
<updated>2017-10-17T01:39:18Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-10-17T01:39:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7cc155a04ce9579de3cdca59db9a4de11dc5eab9'/>
<id>urn:sha1:7cc155a04ce9579de3cdca59db9a4de11dc5eab9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[2.0.x] Bumped trove classifier for 2.0 alpha 1.</title>
<updated>2017-09-22T18:04:22Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-09-22T18:04:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=45cd53eee8ca98d4e22adb727151c32a416fe175'/>
<id>urn:sha1:45cd53eee8ca98d4e22adb727151c32a416fe175</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #23919 -- Removed misc Python 2/3 references.</title>
<updated>2017-01-25T18:59:25Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-01-25T18:59:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=1c466994d9729a8902d34e277a3a685bef2a08e1'/>
<id>urn:sha1:1c466994d9729a8902d34e277a3a685bef2a08e1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #27025 -- Documented Python 3.6 compatibility for Django 1.11.</title>
<updated>2016-12-27T17:01:24Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2016-12-27T17:01:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=4701abd56e382bca72d4ff8e0b015948c9ab3feb'/>
<id>urn:sha1:4701abd56e382bca72d4ff8e0b015948c9ab3feb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #27327 -- Simplified time zone handling by requiring pytz.</title>
<updated>2016-10-27T12:53:20Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2016-10-08T01:06:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=414ad25b090a63eaaf297b1164c8f7d814a710a2'/>
<id>urn:sha1:414ad25b090a63eaaf297b1164c8f7d814a710a2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Used HTTPS link to djangoproject.com in setup.py.</title>
<updated>2016-09-22T23:37:19Z</updated>
<author>
<name>Adam Chainz</name>
<email>me@adamj.eu</email>
</author>
<published>2016-09-22T23:37:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=78ec4dfeffccb08fe4c2314d5f044c147ada30c9'/>
<id>urn:sha1:78ec4dfeffccb08fe4c2314d5f044c147ada30c9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #26033 -- Added password hasher support for Argon2 v1.3.</title>
<updated>2016-04-26T01:17:53Z</updated>
<author>
<name>Bas Westerbaan</name>
<email>bas@westerbaan.name</email>
</author>
<published>2016-04-22T11:26:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a5033dbc58d6e09d28b8abe3acda20b9c60e0b8e'/>
<id>urn:sha1:a5033dbc58d6e09d28b8abe3acda20b9c60e0b8e</id>
<content type='text'>
The previous version of Argon2 uses encoded hashes of the form:
   $argon2d$m=8,t=1,p=1$&lt;salt&gt;$&lt;data&gt;

The new version of Argon2 adds its version into the hash:
   $argon2d$v=19$m=8,t=1,p=1$&lt;salt&gt;$&lt;data&gt;

This lets Django handle both version properly.
</content>
</entry>
<entry>
<title>Fixed #26033 -- Added Argon2 password hasher.</title>
<updated>2016-03-08T16:22:18Z</updated>
<author>
<name>Bas Westerbaan</name>
<email>bas@westerbaan.name</email>
</author>
<published>2015-12-26T12:14:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b4250ea04a88f6c4fdf84dc8624baa1cf3e0f568'/>
<id>urn:sha1:b4250ea04a88f6c4fdf84dc8624baa1cf3e0f568</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Corrected trove classifiers for Python version support.</title>
<updated>2015-08-17T12:34:34Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2015-08-17T12:34:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=982b79b8d877a72c7be2c7cef741872c8334db35'/>
<id>urn:sha1:982b79b8d877a72c7be2c7cef741872c8334db35</id>
<content type='text'>
</content>
</entry>
</feed>
