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

Commit 03a886c

Browse files
committed
chore(release): bump version
1 parent 4fbb46d commit 03a886c

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.github/RELEASE.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
Releasing New Versions
22
======================
33

4-
TODO: fill this out!
4+
TODO: fill this out more completely!
5+
6+
.. code-block:: console
7+
8+
$ poetry version <kind>
9+
$ clog -C CHANGELOG.md --setversion <new> -f <old>
10+
$ git commit -am 'chore(release): bump version' && git push
11+
$ git tag x.y.z && git push origin x.y.z
12+
13+
Then create a Github release. If you have access to a build system other than
14+
our CI (say, if you're running on OSX), you can provide bonus wheels with:
15+
16+
.. code-block:: console
17+
18+
$ rm -rf dist/
19+
$ poetry build -fwheel
20+
$ poetry upload

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="2.0.1"></a>
2+
## 2.0.1 (2021-06-18)
3+
4+
#### Performance
5+
6+
* **cluster:** run scan operation in parallel across nodes (#7) ([4fbb46d0](4fbb46d0))
7+
18
<a name="2.0.0"></a>
29
## 2.0.0 (2021-06-08)
310

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "yaaredis"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "Python async client for Redis key-value store"
55
readme = "README.rst"
66

0 commit comments

Comments
 (0)