Skip to content

Commit

Permalink
version 2.2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Jun 16, 2020
1 parent 283081b commit 6118533
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
============

v2.2.0rc1 (2020-06-16)
---------------------

https://github.com/slackapi/python-slack-events-api/milestone/1?closed=1

- Add Blueprint (application factories) support #56 #69 - thanks @maryum375 @psykzz @seratch
- Add current_app (LocalProxy) support #66 #71 - thanks @tstoco @seratch
- Apply various improvement to the PyPI packaging #47 #70 #72 - thanks @seratch
- Drop Python 2.7.6 support #53 #68 - thanks @Roach @seratch
- Refactor duplicated code #59 - thanks @vvatelot
- Add more tests #37 #40 - thanks @datashaman

v2.1.0 (2018-12-12)
---------------------

Expand Down
20 changes: 20 additions & 0 deletions maintainers_guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Deployment

```bash
# https://packaging.python.org/guides/using-testpypi/
python -m venv env
source env/bin/activate
pip install --upgrade pip
pip install twine wheel
rm -rf dist/
python setup.py sdist bdist_wheel
twine check dist/*

# Testing
twine upload --repository testpypi dist/*
pip install --index-url https://test.pypi.org/simple/ slackeventsapi

# Deployment
twine upload dist/*
```

2 changes: 1 addition & 1 deletion slackeventsapi/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# see: http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers
__version__ = '2.1.0'
__version__ = '2.2.0rc1'

0 comments on commit 6118533

Please sign in to comment.