diff --git a/CHANGELOG.md b/CHANGELOG.md index a17f890..b5531a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/RELEASING.md b/RELEASING.md index dbb3e8e..c64c861 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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/* -``` diff --git a/setup.py b/setup.py index cac79fc..a959f6c 100644 --- a/setup.py +++ b/setup.py @@ -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: