Skip to content

Commit

Permalink
update to 1.0.1 to enable semver update, classifier update
Browse files Browse the repository at this point in the history
  • Loading branch information
tedder committed Sep 29, 2020
1 parent cd3f3dd commit 4497c0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.0.0 (2020-09-28)
1.0.1 (2020-09-28)
=========

**New features**
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,9 @@ python3 -m pip install --user --upgrade twine

build and release, creds in `~/.pypirc`:
```
python3 setup.py sdist bdist_wheel
python3 -m twine upload --repository testpypi dist/*
rm -f dist/*; \
python3 setup.py sdist bdist_wheel && \
python3 -m twine upload --repository testpypi dist/* && \
python3 -m twine upload --repository pypi dist/*
```

2 changes: 1 addition & 1 deletion requests_aws4auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,4 @@
del aws4signingkey
del exceptions

__version__ = '1.0.0'
__version__ = '1.0.1'

0 comments on commit 4497c0f

Please sign in to comment.