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 +17
-7
lines changed Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Changelog
4
4
This document describes changes between each past release.
5
5
6
6
7
- 3.1.0 (unreleased )
7
+ 3.1.0 (2016-03-07 )
8
8
------------------
9
9
10
10
**Protocol **
@@ -15,6 +15,15 @@ This document describes changes between each past release.
15
15
16
16
- Default console log renderer now has colours (#671)
17
17
18
+ **Bug fixes **
19
+
20
+ - Do not always return 412 errors when request header ``If-None-Match: * ``
21
+ is sent on ``POST /collection `` (fixes #673)
22
+
23
+ **Internal changes **
24
+
25
+ - Remove some imports at initialization to speed startup (#674)
26
+
18
27
19
28
3.0.0 (2016-02-26)
20
29
------------------
Original file line number Diff line number Diff line change @@ -63,16 +63,16 @@ def setup(app):
63
63
64
64
# General information about the project.
65
65
project = u'Cliquet'
66
- copyright = u'2015, Mozilla Services — Da French Team'
66
+ copyright = u'2015-2016 , Mozilla Services — Da French Team'
67
67
68
68
# The version info for the project you're documenting, acts as replacement for
69
69
# |version| and |release|, also used in various other places throughout the
70
70
# built documents.
71
71
#
72
72
# The short X.Y version.
73
- version = '3.0 '
73
+ version = '3.1 '
74
74
# The full version, including alpha/beta/rc tags.
75
- release = '3.0 .0'
75
+ release = '3.1 .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.2
2
+ colorama == 0.3.6
2
3
contextlib2 == 0.5.1
3
4
cornice == 1.2.0
4
5
enum34 == 1.1.2
@@ -9,8 +10,8 @@ psycopg2==2.6.1
9
10
pyramid == 1.6.1
10
11
pyramid-multiauth == 0.8.0
11
12
pyramid-tm == 0.12.1
12
- python-dateutil == 2.4.2
13
- raven == 5.10.2
13
+ python-dateutil == 2.5.0
14
+ raven == 5.11.0
14
15
redis == 2.10.5
15
16
repoze.lru == 0.6
16
17
requests == 2.9.1
Original file line number Diff line number Diff line change 66
66
67
67
68
68
setup (name = 'cliquet' ,
69
- version = '3.1.0.dev0 ' ,
69
+ version = '3.1.0' ,
70
70
description = 'Micro service API toolkit' ,
71
71
long_description = README + "\n \n " + CHANGELOG + "\n \n " + CONTRIBUTORS ,
72
72
license = 'Apache License (2.0)' ,
You can’t perform that action at this time.
0 commit comments