From 151d83eeac89d4f8ab1a0d07ecbd756f034f236f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Fri, 18 Jan 2019 09:58:08 +0100 Subject: [PATCH] v1.0.3 version release --- CHANGELOG.md | 14 +++++++++++++- README.md | 4 ++-- ably/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf28c1c0..ed370f16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,19 @@ # Change Log -## [v1.0.2](https://github.com/ably/ably-python/tree/v1.0.2) +## [v1.0.3](https://github.com/ably/ably-python/tree/v1.0.3) +[Full Changelog](https://github.com/ably/ably-python/compare/v1.0.2...v1.0.3) + +**Closed issues:** + +- Travis failures with Python 2 in the 1.0 branch [\#138](https://github.com/ably/ably-python/issues/138) + +**Merged pull requests:** + +- clientId must be a \(text\) string [\#139](https://github.com/ably/ably-python/pull/139) ([jdavid](https://github.com/jdavid)) +- Fix authentication with auth\_url [\#137](https://github.com/ably/ably-python/pull/137) ([jdavid](https://github.com/jdavid)) + +## [v1.0.2](https://github.com/ably/ably-python/tree/v1.0.2) (2018-12-10) [Full Changelog](https://github.com/ably/ably-python/compare/v1.0.1...v1.0.2) **Fixed bugs:** diff --git a/README.md b/README.md index 4f3305fe..a321a4c8 100644 --- a/README.md +++ b/README.md @@ -162,8 +162,8 @@ pytest test ## Release Process -1. Update [`setup.py`](./setup.py) with the new version number -2. Run `python setup.py sdist upload -r pypi` to build and upload this new package to PyPi +1. Update [`setup.py`](./setup.py) and [`ably/__init__.py`](./ably/__init__.py) with the new version number +2. Run `python setup.py sdist upload -r ably` to build and upload this new package to PyPi 3. Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to automate the update of the [CHANGELOG](./CHANGELOG.md). Once the CHANGELOG has completed, manually change the `Unreleased` heading and link with the current version number such as `v1.0.0`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`. Commit this change. 4. Tag the new version such as `git tag v1.0.0` 5. Visit https://github.com/ably/ably-python/tags and add release notes for the release including links to the changelog entry. diff --git a/ably/__init__.py b/ably/__init__.py index e4897dc9..187c8ee2 100644 --- a/ably/__init__.py +++ b/ably/__init__.py @@ -27,4 +27,4 @@ def createLock(self): from ably.util.exceptions import AblyException, AblyAuthException, IncompatibleClientIdException api_version = '1.0' -lib_version = '1.0.2' +lib_version = '1.0.3' diff --git a/setup.py b/setup.py index 2fcfbb76..a5a6671b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='ably', - version='1.0.2', + version='1.0.3', classifiers=[ 'Development Status :: 6 - Mature', 'Intended Audience :: Developers',