File tree Expand file tree Collapse file tree 3 files changed +12
-16
lines changed Expand file tree Collapse file tree 3 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 11## Change log
22
3+ ### 0.2.2
4+
5+ - fix: support elasticsearch > 7.10 [ Daniel Vaz Gaspar]
6+
37### 0.2.1
48
59- feat: support new opendistro SQL engine 1.13 [ Daniel Vaz Gaspar]
Original file line number Diff line number Diff line change 1- # Releasing to Pypi instructions
21
3-
4- ## Test release on test.pypi.org
2+ - Create new branch and PR named: ` release/X.Y.Z ` .
3+ - Update ` setup.py ` and CHANGELOG.md.
4+ - Let CI run and be green, then merge.
5+ - Release to Pypi
56
67``` bash
78python setup.py sdist bdist_wheel
8- twine upload --repository-url https://test.pypi.org/legacy/ dist/*
9- ```
10-
11- Testing the release
12-
13- ``` bash
14- pip install --index-url https://test.pypi.org/simple/ elasticsearch-dbapi
9+ twine upload dist/*
1510```
11+ - tag X.Y.Z
12+ - Create github release
1613
17- ## Release to Pypi
1814
19- ``` bash
20- python setup.py sdist bdist_wheel
21- twine upload dist/*
22- ```
Original file line number Diff line number Diff line change 33
44from setuptools import find_packages , setup
55
6- VERSION = "0.2.1 "
6+ VERSION = "0.2.2 "
77BASE_DIR = os .path .abspath (os .path .dirname (__file__ ))
88
99with io .open ("README.md" , "r" , encoding = "utf-8" ) as f :
You can’t perform that action at this time.
0 commit comments