File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed
Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 11Changelog
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+
416v2.1.0 (2018-12-12)
517---------------------
618
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 11# see: http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers
2- __version__ = '2.1.0 '
2+ __version__ = '2.2.0rc1 '
You can’t perform that action at this time.
0 commit comments