This repository was archived by the owner on Mar 28, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +18
-9
lines changed Expand file tree Collapse file tree 4 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,19 @@ Changelog
4
4
This document describes changes between each past release.
5
5
6
6
7
- 2.12.0 (unreleased )
7
+ 2.12.0 (2015-11-27 )
8
8
-------------------
9
9
10
+ **Protocol **
11
+
12
+ Minor changes in the root URL (hello view):
13
+
14
+ - Added ``http_api_version `` (#600)
15
+ - Renamed ``hello `` to ``project_name ``
16
+ - Renamed ``protocol_version `` to ``cliquet_protocol_version ``
17
+ - Renamed ``documentation `` to ``project_docs ``
18
+ - Renamed ``version `` to ``project_version ``
19
+
10
20
**Breaking changes **
11
21
12
22
- When using *cliquet-fxa *, the setting ``multiauth.policy.fxa.use `` must now
@@ -26,16 +36,15 @@ This document describes changes between each past release.
26
36
resource names (#492, #555)
27
37
- Add ability to listen to read action on resource (disabled by default)
28
38
(#493)
29
- - Added the ``http_api_version `` in the root view (#600)
30
-
31
39
32
40
**Internal **
33
41
34
42
- Fixed a few details in quickstart docs since backends are not Redis by default
35
43
anymore
36
44
- Replace usage of ``assert `` by explicit exceptions since the former can
37
45
be ignored when python is ran with ``-O `` (fixes #592)
38
-
46
+ - Improved documentation about permissions (#572, thanks for the feedback @MrChoclate)
47
+ - Fixed docs building under Python 3 (#591)
39
48
40
49
41
50
2.11.0 (2015-11-17)
Original file line number Diff line number Diff line change @@ -70,9 +70,9 @@ def setup(app):
70
70
# built documents.
71
71
#
72
72
# The short X.Y version.
73
- version = '2.11 '
73
+ version = '2.12 '
74
74
# The full version, including alpha/beta/rc tags.
75
- release = '2.11 .0'
75
+ release = '2.12 .0'
76
76
77
77
# List of patterns, relative to source directory, that match files and
78
78
# directories to ignore when looking for source files.
Original file line number Diff line number Diff line change 1
1
colander == 1.0
2
2
cornice == 1.1.0
3
3
iso8601 == 0.1.11
4
- newrelic == 2.58.0.43
4
+ newrelic == 2.58.2.45
5
5
PasteDeploy == 1.5.2
6
6
psycopg2 == 2.6.1
7
7
pyramid == 1.5.7
8
8
pyramid-multiauth == 0.5.0
9
- pyramid-tm == 0.12
9
+ pyramid-tm == 0.12.1
10
10
python-dateutil == 2.4.2
11
11
raven == 5.8.1
12
12
redis == 2.10.5
Original file line number Diff line number Diff line change 64
64
65
65
66
66
setup (name = 'cliquet' ,
67
- version = '2.12.0.dev0 ' ,
67
+ version = '2.12.0' ,
68
68
description = 'Micro service API toolkit' ,
69
69
long_description = README + "\n \n " + CHANGELOG + "\n \n " + CONTRIBUTORS ,
70
70
license = 'Apache License (2.0)' ,
You can’t perform that action at this time.
0 commit comments