Skip to content

Commit e6f3eb7

Browse files
Changelog update + v1.0.0 release notes
1 parent a69d54c commit e6f3eb7

File tree

2 files changed

+37
-11
lines changed

2 files changed

+37
-11
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,30 @@
11
# Change Log
22

3-
## [v0.8.2](https://github.com/ably/ably-python/tree/v0.8.2)
3+
## [v1.0.0](https://github.com/ably/ably-python/tree/v1.0.0)
44

5+
[Full Changelog](https://github.com/ably/ably-python/compare/v0.8.2...v1.0.0)
6+
7+
### v1.0 release and upgrade notes from v0.8
8+
9+
- See https://github.com/ably/docs/issues/235
10+
11+
**Implemented enhancements:**
12+
13+
- RSC19\*, HP\* - New REST \#request method + HttpPaginatedResponse type [\#78](https://github.com/ably/ably-python/issues/78)
14+
- Update REST library for realtime platform to v1.0 specification [\#77](https://github.com/ably/ably-python/issues/77)
15+
16+
**Closed issues:**
17+
18+
- requests version pin too strict? [\#66](https://github.com/ably/ably-python/issues/66)
19+
20+
**Merged pull requests:**
21+
22+
- Issue\#84 TP4, RSC15a \(test\), RSC19e \(test\), .. [\#87](https://github.com/ably/ably-python/pull/87) ([jdavid](https://github.com/jdavid))
23+
- Fix issue 72 [\#85](https://github.com/ably/ably-python/pull/85) ([jdavid](https://github.com/jdavid))
24+
- Fix README, now using pytest instead of nose [\#83](https://github.com/ably/ably-python/pull/83) ([jdavid](https://github.com/jdavid))
25+
- RSA5, RSA6, RSA10, RSL\*, TM\*, TE6, TD7 [\#82](https://github.com/ably/ably-python/pull/82) ([jdavid](https://github.com/jdavid))
26+
27+
## [v0.8.2](https://github.com/ably/ably-python/tree/v0.8.2) (2017-02-17)
528
[Full Changelog](https://github.com/ably/ably-python/compare/v0.8.1...v0.8.2)
629

730
**Implemented enhancements:**
@@ -20,6 +43,7 @@
2043
**Merged pull requests:**
2144

2245
- RSC7, RSC11, RSC15, RSC19 [\#81](https://github.com/ably/ably-python/pull/81) ([jdavid](https://github.com/jdavid))
46+
- Several python code repo improvements [\#73](https://github.com/ably/ably-python/pull/73) ([txomon](https://github.com/txomon))
2347
- updated reqests version in requirements [\#67](https://github.com/ably/ably-python/pull/67) ([essweine](https://github.com/essweine))
2448

2549
## [v0.8.1](https://github.com/ably/ably-python/tree/v0.8.1) (2016-03-22)

README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,6 @@ The client library is available as a [PyPI package](https://pypi.python.org/pypi
2525
cd ably-python
2626
python setup.py install
2727

28-
#### To run the tests after local install
29-
30-
git submodule init
31-
git submodule update
32-
pip install -r requirements-test.txt
33-
pytest test
34-
3528
## Using the REST API
3629

3730
All examples assume a client and/or channel has been created as follows:
@@ -139,6 +132,15 @@ You can also view the [community reported Github issues](https://github.com/ably
139132

140133
To see what has changed in recent versions of Bundler, see the [CHANGELOG](CHANGELOG.md).
141134

135+
## Running the test suite
136+
137+
```python
138+
git submodule init
139+
git submodule update
140+
pip install -r requirements-test.txt
141+
pytest test
142+
```
143+
142144
## Contributing
143145

144146
1. Fork it
@@ -152,9 +154,9 @@ To see what has changed in recent versions of Bundler, see the [CHANGELOG](CHANG
152154

153155
1. Update [`setup.py`](./setup.py) with the new version number
154156
2. Run `python setup.py sdist upload -r pypi` to build and upload this new package to PyPi
155-
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 `v0.8.2`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`. Commit this change.
156-
4. Tag the new version such as `git tag v0.8.2`
157-
5. Push the tag to origin `git push origin v0.8.2`
157+
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.
158+
4. Tag the new version such as `git tag v1.0.0`
159+
5. Push the tag to origin `git push origin v1.0.0`
158160

159161
## License
160162

0 commit comments

Comments
 (0)