Skip to content

Commit 6118533

Browse files
committed
version 2.2.0rc1
1 parent 283081b commit 6118533

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
============
33

4+
v2.2.0rc1 (2020-06-16)
5+
---------------------
6+
7+
https://github.com/slackapi/python-slack-events-api/milestone/1?closed=1
8+
9+
- Add Blueprint (application factories) support #56 #69 - thanks @maryum375 @psykzz @seratch
10+
- Add current_app (LocalProxy) support #66 #71 - thanks @tstoco @seratch
11+
- Apply various improvement to the PyPI packaging #47 #70 #72 - thanks @seratch
12+
- Drop Python 2.7.6 support #53 #68 - thanks @Roach @seratch
13+
- Refactor duplicated code #59 - thanks @vvatelot
14+
- Add more tests #37 #40 - thanks @datashaman
15+
416
v2.1.0 (2018-12-12)
517
---------------------
618

maintainers_guide.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Deployment
2+
3+
```bash
4+
# https://packaging.python.org/guides/using-testpypi/
5+
python -m venv env
6+
source env/bin/activate
7+
pip install --upgrade pip
8+
pip install twine wheel
9+
rm -rf dist/
10+
python setup.py sdist bdist_wheel
11+
twine check dist/*
12+
13+
# Testing
14+
twine upload --repository testpypi dist/*
15+
pip install --index-url https://test.pypi.org/simple/ slackeventsapi
16+
17+
# Deployment
18+
twine upload dist/*
19+
```
20+

slackeventsapi/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# see: http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers
2-
__version__ = '2.1.0'
2+
__version__ = '2.2.0rc1'

0 commit comments

Comments
 (0)