Skip to content

Commit

Permalink
Merge branch 'prepare-0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Oct 28, 2015
2 parents 8c6ac66 + 0559f05 commit 42724d4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,21 @@ CHANGELOG
This document describes changes between each past release.


0.2.0 (unreleased)
0.2.0 (2015-10-28)
==================

- Nothing changed yet.
**Breaking changes**

- Rename kintoclient to kinto_client (#8)

**Features**

- Add the endpoints class. (#9)
- Add batching utilities. (#9)

**Internal changes**

- Add universal wheel configuration.


0.1.1 (2015-09-03)
Expand Down
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PYTHON = $(VENV)/bin/python
DEV_STAMP = $(VENV)/.dev_env_installed.stamp
INSTALL_STAMP = $(VENV)/.install.stamp

.IGNORE: clean
.IGNORE: clean distclean maintainer-clean
.PHONY: all install virtualenv tests

OBJECTS = .venv .coverage
Expand Down Expand Up @@ -39,3 +39,13 @@ functional: need-kinto-running

tests: install-dev need-kinto-running
$(VENV)/bin/py.test -f kinto_client/tests/ kinto_client/tests/functional.py

clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -type d -exec rm -fr {} \;

distclean: clean
rm -fr *.egg *.egg-info/ dist/ build/

maintainer-clean: distclean
rm -fr .venv/ .tox/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
]

setup(name='kinto-client',
version='0.2.0.dev0',
version='0.2.0',
description='Firefox Kinto client',
long_description=README,
license='Apache License (2.0)',
Expand Down

0 comments on commit 42724d4

Please sign in to comment.