Skip to content

Commit f3f5e33

Browse files
authored
Merge pull request #32 from usabilla/task/release-204
Release v2.0.4
2 parents d83f32d + 7050997 commit f3f5e33

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ Changelog
22
=========
33
Here you find a full list of changes.
44

5+
6+
Version 2.0.4
7+
-------------
8+
9+
- Remove usage of urllib3 which was restricted to v1 in favor of embedded urllib to simplify our dependencies
10+
- Update dependencies
11+
512
Version 2.0.3
613
-------------
714

README.MD

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,12 @@ traverses these pages for you and yields each result in the current page before
5353
## Support
5454

5555
The Usabilla Python Client API is maintained by Usabilla Development Team. Everyone is encouraged to file bug reports, feature requests, and pull requests through GitHub. This input is critical and will be carefully considered, but we can’t promise a specific resolution or time frame for any request. For more information please email our Support Team at [email protected].
56+
57+
## Releasing [internal]
58+
59+
In order to release a new version of this library, follow these steps:
60+
- bump version in setup.py
61+
- merge and tag the new release with `v<versio>`
62+
- run `python -m build`
63+
- upload release to pypi-test: `python -m twine upload --repository testpypi dist/*`
64+
- upload release to pypi: `python -m twine upload --repository pypi dist/*`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
except ImportError:
44
from distutils.core import setup
55

6-
VERSION = '2.0.3'
6+
VERSION = '2.0.4'
77

88
setup(
99
name='usabilla-api',

0 commit comments

Comments
 (0)