Skip to content

Commit

Permalink
Bump version: 0.13.1 → 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Jul 10, 2024
1 parent e6f89e0 commit c4cfc2c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 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.13.1
current_version = 0.13.2
commit = True
tag = True
tag_name = {new_version}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
dist/sax-0.13.1.tar.gz
dist/sax-0.13.1-py3-none-any.whl
dist/sax-0.13.2.tar.gz
dist/sax-0.13.2-py3-none-any.whl
- name: Publish to PyPI
run: |
pip install --user twine \
&& twine upload \
dist/sax-0.13.1.tar.gz \
dist/sax-0.13.1-py3-none-any.whl \
dist/sax-0.13.2.tar.gz \
dist/sax-0.13.2-py3-none-any.whl \
--username __token__ \
--password ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM flaport/sax:0.13.1
FROM flaport/sax:0.13.2
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build:

docker:
docker build . -t flaport/sax:latest -f Dockerfile.dev
docker build . -t flaport/sax:0.13.1 -f Dockerfile.dev
docker build . -t flaport/sax:0.13.2 -f Dockerfile.dev

pre-commit:
pre-commit install
Expand All @@ -15,7 +15,7 @@ nbrun:

dockerpush:
docker push flaport/sax:latest
docker push flaport/sax:0.13.1
docker push flaport/sax:0.13.2

.PHONY: docs
docs:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
project = "sax"
copyright = "2023, Apache2"
author = "Floris Laporte"
release = "0.13.1"
release = "0.13.2"
extensions = [
"myst_nb",
"matplotlib.sphinxext.plot_directive",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["setuptools", "pip", "build", "wheel"]

[project]
name = "sax"
version = "0.13.1"
version = "0.13.2"
requires-python = ">=3.10.0"
authors = [
{ name = "Floris Laporte", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion sax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import annotations

__author__ = "Floris Laporte"
__version__ = "0.13.1"
__version__ = "0.13.2"


from functools import partial as partial
Expand Down

0 comments on commit c4cfc2c

Please sign in to comment.