File tree Expand file tree Collapse file tree 4 files changed +31
-4
lines changed Expand file tree Collapse file tree 4 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,26 @@ CHANGELOG
4
4
This document describes changes between each past release.
5
5
6
6
7
- 3.2 .0 (unreleased )
7
+ 4.0 .0 (2016-03-08 )
8
8
==================
9
9
10
10
**Breaking changes **
11
11
12
- - The ``cli_utils.set_parser_server_options() `` was renamed
12
+ - The function ``cli_utils.set_parser_server_options() `` was renamed
13
13
``cli_utils.add_parser_options() `` (#63)
14
14
15
+
15
16
**New features **
16
17
17
- - The `` cli_utils `` can now handle option bucket and collection
18
+ - `` add_parser_options `` can now exclude bucket and collection
18
19
parameters. (#63)
20
+ - ``create_client_from_args `` can now works even with no bucket or
21
+ collection arguments (#63)
22
+
23
+
24
+ **Bug fixes **
25
+
26
+ - Do not sent body in GET requests. (#62)
19
27
20
28
21
29
3.1.0 (2016-02-16)
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ VENV := $(shell echo $${VIRTUAL_ENV-.venv})
3
3
PYTHON = $(VENV ) /bin/python
4
4
DEV_STAMP = $(VENV ) /.dev_env_installed.stamp
5
5
INSTALL_STAMP = $(VENV ) /.install.stamp
6
+ TEMPDIR := $(shell mktemp -d)
6
7
7
8
.IGNORE : clean distclean maintainer-clean
8
9
.PHONY : all install virtualenv tests
@@ -50,3 +51,9 @@ distclean: clean
50
51
51
52
maintainer-clean : distclean
52
53
rm -fr .venv/ .tox/
54
+
55
+ build-requirements :
56
+ $(VIRTUALENV ) $(TEMPDIR )
57
+ $(TEMPDIR ) /bin/pip install -U pip
58
+ $(TEMPDIR ) /bin/pip install -Ue .
59
+ $(TEMPDIR ) /bin/pip freeze > requirements.txt
Original file line number Diff line number Diff line change
1
+ cffi == 1.5.2
2
+ cryptography == 1.2.3
3
+ enum34 == 1.1.2
4
+ idna == 2.0
5
+ ipaddress == 1.0.16
6
+ ndg-httpsclient == 0.4.0
7
+ pyasn1 == 0.1.9
8
+ pycparser == 2.14
9
+ pyOpenSSL == 0.15.1
10
+ requests == 2.9.1
11
+ six == 1.10.0
12
+ Unidecode == 0.4.19
Original file line number Diff line number Diff line change 23
23
24
24
25
25
setup (name = 'kinto-client' ,
26
- version = '3.2.0.dev0 ' ,
26
+ version = '4.0.0 ' ,
27
27
description = 'Kinto client' ,
28
28
long_description = README ,
29
29
license = 'Apache License (2.0)' ,
You can’t perform that action at this time.
0 commit comments