Release 2.0.2
[django-pagination.git] / doc / changes.rst
1 Version History
2 ***************
3
4
5 .. _version_2_0_2:
6
7 Version 2.0.2
8 =============
9
10 This is an another micro release. There are no code changes (apart from
11 setup.py). The only change is to make it pip-friendly by using new integration
12 mode with versiontools.
13
14 .. _version_2_0_1:
15
16
17 Version 2.0.1
18 =============
19
20 This is a micro release. There are no code changes so there is no need to
21 upgrade. The only changes are to documentation and infrastructure files.
22
23 The following changes are included:
24
25 * Improve documentation for using custom pagination templates
26 * Document multiple paginations per page
27 * Use correct template name in do_paginate docstring
28 * Provide correct link to installation instructions
29 * Fix documentation referencing all project name
30 * Ignore vim swap files
31 * Add templates from the test project to MANIFEST.in
32
33
34 .. _version_2_0:
35
36 Version 2.0
37 ===========
38
39
40 * Revived the project as a fork of
41   git://github.com/ericflo/django-pagination.git. The project now has a new
42   maintainer (Zygmunt Krynicki) and a new home (on pypi and launchpad).
43
44 * Merged a lot of branches of the old project. In general this was made to show
45   people "here is the new good stuff" and to get as much contributions, back
46   into the trunk, as possible.
47
48 * Merge a lot of translations: de, es, fr, it, nn, no, pl, pt, pt_BR, ru and
49   tr. Translations are still in a bad state (they are not built automatically,
50   they are in incorrect place) but the first step is done.
51
52 * Add support for custom pagination templates. You can now use the optional
53   argument on paginate to use different template::
54
55     {% autopaginate obj_list %}
56     ...
57     {% paginate using "something/custom_template.html" %}
58
59 * Pagination template has support for specific blocks. Those blocks are
60   'previouslink', 'pagelinks' and 'nextlink'.  Make sure to base your template
61   on pagination/pagination.html end extend the blocks you care about.
62
63 * Add support for using multiple paginations on a single page. Simply use
64   multiple autopaginate/paginate tags. The only limitation is that you must use
65   paginate before using the next autopaginate tag. For an example see the test
66   project and the example application inside.
67
68 * Simplify building documentation. To build the documentation simply run
69   `setup.py build_sphinx`. You will need sphinx installed obviously.
70
71 * Simplify running tests. To run tests just invoke `setup.py test`. That's all!
72   This is based on the goodness of django-testproject that simplifies setting
73   up helper projects just for testing.
74
75
76 Version 1.0.7
77 =============
78
79 * Last release from previous upstream developer.