Skip to content

Commit

Permalink
Merge pull request #32 from usabilla/task/release-204
Browse files Browse the repository at this point in the history
Release v2.0.4
  • Loading branch information
rdohms authored Aug 15, 2023
2 parents d83f32d + 7050997 commit f3f5e33
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Changelog
=========
Here you find a full list of changes.


Version 2.0.4
-------------

- Remove usage of urllib3 which was restricted to v1 in favor of embedded urllib to simplify our dependencies
- Update dependencies

Version 2.0.3
-------------

Expand Down
9 changes: 9 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,12 @@ traverses these pages for you and yields each result in the current page before
## Support

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].

## Releasing [internal]

In order to release a new version of this library, follow these steps:
- bump version in setup.py
- merge and tag the new release with `v<versio>`
- run `python -m build`
- upload release to pypi-test: `python -m twine upload --repository testpypi dist/*`
- upload release to pypi: `python -m twine upload --repository pypi dist/*`
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
except ImportError:
from distutils.core import setup

VERSION = '2.0.3'
VERSION = '2.0.4'

setup(
name='usabilla-api',
Expand Down

0 comments on commit f3f5e33

Please sign in to comment.