Skip to content

Commit 987d98e

Browse files
author
Rémy HUBSCHER
committed
Merge Release 4.0.0 branch.
2 parents f1f48c5 + 74e435a commit 987d98e

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,26 @@ CHANGELOG
44
This document describes changes between each past release.
55

66

7-
3.2.0 (unreleased)
7+
4.0.0 (2016-03-08)
88
==================
99

1010
**Breaking changes**
1111

12-
- The ``cli_utils.set_parser_server_options()`` was renamed
12+
- The function ``cli_utils.set_parser_server_options()`` was renamed
1313
``cli_utils.add_parser_options()`` (#63)
1414

15+
1516
**New features**
1617

17-
- The ``cli_utils`` can now handle option bucket and collection
18+
- ``add_parser_options`` can now exclude bucket and collection
1819
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)
1927

2028

2129
3.1.0 (2016-02-16)

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ VENV := $(shell echo $${VIRTUAL_ENV-.venv})
33
PYTHON = $(VENV)/bin/python
44
DEV_STAMP = $(VENV)/.dev_env_installed.stamp
55
INSTALL_STAMP = $(VENV)/.install.stamp
6+
TEMPDIR := $(shell mktemp -d)
67

78
.IGNORE: clean distclean maintainer-clean
89
.PHONY: all install virtualenv tests
@@ -50,3 +51,9 @@ distclean: clean
5051

5152
maintainer-clean: distclean
5253
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

requirements.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
setup(name='kinto-client',
26-
version='3.2.0.dev0',
26+
version='4.0.0',
2727
description='Kinto client',
2828
long_description=README,
2929
license='Apache License (2.0)',

0 commit comments

Comments
 (0)