Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
chore(release): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKevJames committed Jun 18, 2021
1 parent 4fbb46d commit 03a886c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .github/RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
Releasing New Versions
======================

TODO: fill this out!
TODO: fill this out more completely!

.. code-block:: console
$ poetry version <kind>
$ clog -C CHANGELOG.md --setversion <new> -f <old>
$ 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="2.0.1"></a>
## 2.0.1 (2021-06-18)

#### Performance

* **cluster:** run scan operation in parallel across nodes (#7) ([4fbb46d0](4fbb46d0))

<a name="2.0.0"></a>
## 2.0.0 (2021-06-08)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down

0 comments on commit 03a886c

Please sign in to comment.