-
Notifications
You must be signed in to change notification settings - Fork 9
/
CHANGELOG.txt
135 lines (88 loc) · 2.97 KB
/
CHANGELOG.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
Changelog
=========
1.9 (unreleased)
----------------
- Checked compatibility with Django 4.2. Dropped Python 3.7 as
it's end-of-life.
1.8.1 (2022-09-03)
------------------
- Forgot a file in the previous release...
1.8 (2022-09-03)
----------------
- Checked compatibility with Django 4.0. Dropped Python 3.5 as
django-model-utils not compatible with it.
- Updated example project to use Bootstrap 5.
- Checked compatibility with Django 4.1. Dropped Python 3.6 as
it's end-of-life.
1.7 (2021-04-29)
----------------
- Checked support for Django 3.1 and 3.2.
- Dropped support for Django 1.11.
1.6 (2019-12-12)
----------------
- Added support for Django 3.
- Dropped support for Python 2, python 3.4 and Django 2.1.
1.5 (2019-07-01)
----------------
- Support for Django 2.1 and 2.2.
- Added Tox.
1.4 (2018-05-14)
----------------
- Example project never had database migrations.
- Setup script was broken if used with version 10 of pip.
1.3 (2017-12-03)
----------------
- Added support for Django 2.0.
- Dropped support for Django 1.8 and 1.10.
1.2 (2017-05-10)
----------------
- Checked that app works with Django 1.11.
- Bugfix: sitemap items are ordered by 'start' date.
1.1 (2016-10-05)
----------------
- Now works with Django 1.10.
1.0 (2016-02-09)
----------------
BACKWARDS INCOMPATIBLE CHANGES:
"Why is it called mininews, when it's a publication control system?". Good point. So I renamed the entire project
from django-mininews to django-minipub, and bumped the version to 1.0 to warn that big changes were to be expected!
To upgrade: simply run a global search-and-replace in your project for the following strings:
- 'mininews' is replaced by 'minipub'
- 'Mininews' is replaced by 'Minipub'
That's it!
Changes:
- Changed project name to django-minipub.
0.6.1 (2015-05-11)
------------------
- Improved setup file.
0.6 (2015-05-10)
----------------
- Dropped Django 1.4/1.6 and added support for Django 1.8.
0.5 (2015-04-21)
----------------
- Play nice with other mixins' clean() methods.
- Improved documentation.
- Fixed some deprecation warnings.
- Upgraded versions of various third party packages.
0.4 (2014-10-15)
----------------
- Better handling of when we have more statuses than just 'draft' and 'published'.
- Removed pagination: it's not Mininews' job to control this.
- Do not set 'allow_empty': leave that to the end-user project.
- Do not set 'make_object_list': leave that to the end-user project.
- Updated Bootstrap version used in example project.
- Added more documentation.
- Removed unnecessary code.
0.3 (2014-09-19)
----------------
- Renamed AbstractArticleModel to MininewsModel.
- Renamed viewable() to live().
- Renamed all the views.
- Renamed admin class.
- All articles should be viewable in list views to staff users.
- Added a 'staff_preview' property.
- Tidied up the example_project.
- Started on the documentation.
0.2 (2014-09-05)
----------------
- Strip out the SEO fields and model - they belong in their own, separate, application.