Skip to content

Commit

Permalink
v1.0.3 version release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Jan 18, 2019
1 parent 07d2101 commit 151d83e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ably/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='ably',
version='1.0.2',
version='1.0.3',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 151d83e

Please sign in to comment.