forked from dominicrodger/django-tinycontent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
81 lines (60 loc) · 2.13 KB
/
CHANGELOG
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
v0.7.1
------
* Added migration required for Python 3 (thanks @markus-hinsche).
v0.7.0
------
* Compatibility changes for Django 1.11 - dropped support for
versions of Django earlier than 1.8, and Python 3.4 (Python 2.7 and
Python 3.5 are still supported).
v0.6.1
------
* Modify cache name, to prevent warnings for non-ASCII characters or
whitespace (thanks @ad-m).
v0.6.0
------
* Compatibility changes for Django 1.10.
v0.5.1
------
* Added a Polish translation and locale (thanks @ad-m).
v0.5.0
------
* Add support for multiple arguments to both the ``tinycontent`` and
the ``tinycontent_simple`` template tags. See the documentation
about :ref:`multiple-arguments`.
* Start caching database queries - fetching a TinyContent block by
name (as the template tags do), will only hit the database the
first time that content block is loaded (unless the content block
is changed).
v0.4.0
------
* Require at least django-autoslug 1.8.0, to fix a warning about
unapplied migrations.
v0.3.0
------
* Drop support for Django 1.4 (it's quite hard to support Django 1.4
and 1.9 in a single release - since Django 1.4 requires ``{% load
url from future %}``, and Django 1.9 doesn't support it).
* Ensure the wheel we upload to PyPI is universal.
* Forward compatibility for Django 1.9 - remove the ``{% load url
from future %}`` from tinycontent templates.
v0.2.1
------
* Forwards compatibility change for Django 1.9 - which will remove
the version of ``importlib`` bundled with Django. All supported
versions of Python (2.7, 3.3 and 3.4) have ``importlib``.
v0.2.0
------
* Dropped support for Python 2.6.
* Added a built-in markdown filter - you can use it by setting
``TINYCONTENT_FILTER`` to
``'tinycontent.filters.md.markdown_filter'``.
* Added the ability to include links to files which you can upload
via the admin.
* Added support for setting ``TINYCONTENT_FILTER`` to a list of
dotted paths, to allow chaining filters.
v0.1.8
------
* Added the ``TINYCONTENT_FILTER`` setting for controlling the way
content is output.
* Improved testing with Travis (we now test all supported Python
versions and Django versions).