Skip to content

Commit

Permalink
chore: release 0.1.0-rc.25 → 0.1.0-rc.26
Browse files Browse the repository at this point in the history
Release-As: 0.1.0-rc.26
Signed-off-by: Bowen Tan <bowentan78@gmail.com>
  • Loading branch information
bowentan committed Oct 13, 2022
1 parent 381e79d commit 58ded36
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0-rc.25
current_version = 0.1.0-rc.26
parse = ^
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
(-(?P<prephase>a|b|rc).(?P<preN>\d+))? # pre-release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Wait PyPi update
run: |
python -m pip install --upgrade pip
while true; do pip download glob-linters==0.1.0-rc.25 2> /dev/null && break || sleep 5; done
while true; do pip download glob-linters==0.1.0-rc.26 2> /dev/null && break || sleep 5; done
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.10.7-slim

LABEL org.opencontainers.image.source https://github.com/bowentan/glob-linters

ENV GLOB_LINTERS_VERSION 0.1.0-rc.25
ENV GLOB_LINTERS_VERSION 0.1.0-rc.26
RUN pip install --no-cache-dir glob-linters==${GLOB_LINTERS_VERSION}

ENTRYPOINT [ "glob-linters" ]
2 changes: 1 addition & 1 deletion glob_linters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Bowen Tan"""
__email__ = "bowentan78@gmail.com"
__version__ = "0.1.0-rc.25"
__version__ = "0.1.0-rc.26"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ def _local_scheme(version: str) -> str: # pylint: disable=unused-argument
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/bowentan/glob-linters",
version="0.1.0-rc.25",
version="0.1.0-rc.26",
zip_safe=False,
)

0 comments on commit 58ded36

Please sign in to comment.