Skip to content

Commit

Permalink
release: 0.2.2 (#55)
Browse files Browse the repository at this point in the history
* release: 0.2.2

* release: 0.2.2
  • Loading branch information
dpgaspar authored Apr 20, 2021
1 parent 42d629b commit 3e12e0d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Change log

### 0.2.2

- fix: support elasticsearch > 7.10 [Daniel Vaz Gaspar]

### 0.2.1

- feat: support new opendistro SQL engine 1.13 [Daniel Vaz Gaspar]
Expand Down
22 changes: 7 additions & 15 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
# Releasing to Pypi instructions


## Test release on test.pypi.org
- Create new branch and PR named: `release/X.Y.Z`.
- Update `setup.py` and CHANGELOG.md.
- Let CI run and be green, then merge.
- Release to Pypi

``` bash
python setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
```

Testing the release

```bash
pip install --index-url https://test.pypi.org/simple/ elasticsearch-dbapi
twine upload dist/*
```
- tag X.Y.Z
- Create github release

## Release to Pypi

``` bash
python setup.py sdist bdist_wheel
twine upload dist/*
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import find_packages, setup

VERSION = "0.2.1"
VERSION = "0.2.2"
BASE_DIR = os.path.abspath(os.path.dirname(__file__))

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

0 comments on commit 3e12e0d

Please sign in to comment.