Skip to content

Commit 3e12e0d

Browse files
authored
release: 0.2.2 (#55)
* release: 0.2.2 * release: 0.2.2
1 parent 42d629b commit 3e12e0d

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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]

RELEASING.md

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
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
78
python 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-
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import find_packages, setup
55

6-
VERSION = "0.2.1"
6+
VERSION = "0.2.2"
77
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
88

99
with io.open("README.md", "r", encoding="utf-8") as f:

0 commit comments

Comments
 (0)