Skip to content

Commit d7775ff

Browse files
committed
Release 4.0.1
1 parent cf5b755 commit d7775ff

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Diff for: CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## [Unreleased]
4+
## [4.0.1] - 17/11/2018
55

66
### Added
77
- RuntimeError if you were calling the wrong method (iter/aiter) on an inappropriate client (i.e. async client -> iter/blocking client -> aiter)
@@ -29,4 +29,5 @@ All notable changes to this project will be documented in this file.
2929

3030

3131
[Unreleased]: https://github.com/cgrok/clashroyalecompare/v4.0.0...HEAD
32+
[4.0.1]: https://github.com/cgrok/clashroyale/compare/v4.0.0...v4.0.1
3233
[4.0.0]: https://github.com/cgrok/clashroyale/compare/6c9215a...v4.0.0

Diff for: clashroyale/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# METADATA #
77
############
88

9-
__version__ = 'v4.0.0'
9+
__version__ = 'v4.0.1'
1010
__title__ = 'clashroyale'
11-
__license__ = 'GPLv3'
11+
__license__ = 'MIT'
1212
__github__ = 'https://github.com/cgrok/clashroyale'

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
setup(
99
name='clashroyale',
1010
packages=find_packages(),
11-
version='4.0.0',
11+
version='4.0.1',
1212
description='An (a)sync wrapper for royaleapi.com',
1313
long_description=long_description,
1414
long_description_content_type='text/x-rst',
15-
license='GPLv3',
15+
license='MIT',
1616
keywords=['clashroyale', 'wrapper', 'cr', 'royaleapi'],
1717
include_package_data=True,
1818
install_requires=['aiohttp', 'python-box', 'requests', 'async_generator'],

Diff for: tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ envlist = py35,py36,py37
1111
[testenv]
1212
changedir = tests
1313
sitepackages = true
14+
whitelist_externals = pytest
1415
commands = pytest official_api
1516
passenv = official_api_url official_api royaleapi

0 commit comments

Comments
 (0)