Skip to content

Commit dfec247

Browse files
committed
Bump version to 0.0.1-dev6
1 parent 2024adb commit dfec247

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
pip install setuptools wheel
2727
python setup.py sdist bdist_wheel
2828
- name: Publish dev/rc build to test.pypi.org
29-
if: ${{ contains(github.ref, "dev") || contains(github.ref, "rc") }}
29+
if: ${{ contains(github.ref, 'dev') || contains(github.ref, 'rc') }}
3030
uses: pypa/[email protected]
3131
with:
3232
user: __token__
3333
password: ${{ secrets.PYPI_TEST }}
3434
repository_url: https://test.pypi.org/legacy/
3535
- name: Publish production build to PyPI
36-
if: ${{ !contains(github.ref, "dev") && !contains(github.ref, "rc") }}
36+
if: ${{ !contains(github.ref, 'dev') && !contains(github.ref, 'rc') }}
3737
uses: pypa/[email protected]
3838
with:
3939
user: __token__

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="async-rediscache",
12-
version="0.0.1-dev5",
12+
version="0.0.1-dev6",
1313
description="An easy to use asynchronous Redis cache",
1414
long_description=open("README.md").read(),
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)