Skip to content

Commit

Permalink
Bump version: 0.11.30 → 0.11.31
Browse files Browse the repository at this point in the history
  • Loading branch information
Yifan Zhang committed Dec 9, 2021
1 parent 0592bd1 commit c02ec20
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.30
current_version = 0.11.31
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -26,13 +26,13 @@
year = "2020"
author = "Yifan Zhang"
copyright = "{0}, {1}".format(year, author)
release = "0.11.30"
release = "0.11.31"
# try:
# from pkg_resources import get_distribution
# version = release = get_distribution('tanbih-worker').version
# except Exception:
# traceback.print_exc()
# version = release = '0.11.30'
# version = release = '0.11.31'

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/test-processor/Dockerfile
Expand Up @@ -27,6 +27,6 @@ WORKDIR /code
COPY test-processor/* /code/
COPY dist/*.whl /code/

RUN python3 -m pip install "tanbih-pipeline[full]@file:///code/tanbih_pipeline-0.11.30-py3-none-any.whl"
RUN python3 -m pip install "tanbih-pipeline[full]@file:///code/tanbih_pipeline-0.11.31-py3-none-any.whl"
ENV PYTHONPATH=/code
CMD /wait && python testprocessor.py
2 changes: 1 addition & 1 deletion integration-tests/test-producer/Dockerfile
Expand Up @@ -27,6 +27,6 @@ WORKDIR /code
COPY test-generator/* /code/
COPY dist/*.whl /code/

RUN python3 -m pip install "tanbih-pipeline[full]@file:///code/tanbih_pipeline-0.11.30-py3-none-any.whl"
RUN python3 -m pip install "tanbih-pipeline[full]@file:///code/tanbih_pipeline-0.11.31-py3-none-any.whl"
ENV PYTHONPATH=/code
CMD /wait && python testgenerator.py
2 changes: 1 addition & 1 deletion integration-tests/test-splitter/Dockerfile
Expand Up @@ -27,6 +27,6 @@ WORKDIR /code
COPY test-splitter/* /code/
COPY dist /code

RUN python3 -m pip install "tanbih-pipeline[full]@file:///code/tanbih_pipeline-0.11.30-py3-none-any.whl"
RUN python3 -m pip install "tanbih-pipeline[full]@file:///code/tanbih_pipeline-0.11.31-py3-none-any.whl"
ENV PYTHONPATH=/code
CMD /wait && python testsplitter.py
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pipeline"
version = "0.11.30"
version = "0.11.31"
description = "data streaming on top of popular message queues"
authors = ["Yifan Zhang <freqyifan@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@

setup(
name="tanbih-pipeline",
version="0.11.30",
version="0.11.31",
description="a pipeline framework for streaming processing",
entry_points={
"console_scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/pipeline/version.py
@@ -1 +1 @@
version = "0.11.30"
version = "0.11.31"

0 comments on commit c02ec20

Please sign in to comment.