-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathNEWS.txt
78 lines (50 loc) · 1.71 KB
/
NEWS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.. This is your project NEWS file which will contain the release notes.
.. Example: http://www.python.org/download/releases/2.6/NEWS.txt
.. The content of this file, along with README.rst, will appear in your
.. project's PyPI page.
News
====
0.8
---
*Release date: 06-Feb-2012*
* Adding a pip requirements file for those using virtualenv
0.7
---
*Release date: 06-Feb-2012*
* Updated the dependancies for the project so the buildout build would
work again
* Stopped squashing missing slug and step errors with a 404 and now
raising custom exceptions
0.6
---
*Release date: 28-Nov-2011*
* Merged a Pull Request to make sure the slug matching in the url matches the
highest index.
0.5
---
*Release date: 25-Nov-2010*
* Merged a Pull Request to allow the SessionWizard to support Steps that use a
ModelForm instead of just a Form
* Added the ability to cancel a wizard!
0.4
---
*Release date: 30-Nov-2010*
* Fixed the bug where existing form data was not getting populated on a GET request.
* Updated the process of process_POST to not automatically call self.clear().
The developer of the wizard now should call self.clear() right before a
successful return from self.done(). If the wizard needs to redirect to a step
in the process because of post processing error then the SessionWizard will
not remove the data form session now.
0.3
---
*Release date: 30-Nov-2010*
* Changed the way the id of the SessionWizard is generated to address problem of
lose of data in a multi-threaded/multi-process Django environment
0.2
---
*Release date: 3-Nov-2010*
* Added the initialize hook to the SessionWizard to allow per request initialization.
0.1
---
*Release date: 24-Aug-2010*
* Initial project creation finished.