diff --git a/.github/RELEASE.rst b/.github/RELEASE.rst index f322ae2d..c92461eb 100644 --- a/.github/RELEASE.rst +++ b/.github/RELEASE.rst @@ -1,4 +1,20 @@ Releasing New Versions ====================== -TODO: fill this out! +TODO: fill this out more completely! + +.. code-block:: console + + $ poetry version + $ clog -C CHANGELOG.md --setversion -f + $ git commit -am 'chore(release): bump version' && git push + $ git tag x.y.z && git push origin x.y.z + +Then create a Github release. If you have access to a build system other than +our CI (say, if you're running on OSX), you can provide bonus wheels with: + +.. code-block:: console + + $ rm -rf dist/ + $ poetry build -fwheel + $ poetry upload diff --git a/CHANGELOG.md b/CHANGELOG.md index 71f26bd5..1d0a09d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ + +## 2.0.1 (2021-06-18) + +#### Performance + +* **cluster:** run scan operation in parallel across nodes (#7) ([4fbb46d0](4fbb46d0)) + ## 2.0.0 (2021-06-08) diff --git a/pyproject.toml b/pyproject.toml index 3faa7b62..ea315a31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yaaredis" -version = "2.0.0" +version = "2.0.1" description = "Python async client for Redis key-value store" readme = "README.rst"