Skip to content

Commit

Permalink
Bump version: 0.1.2 → 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Jan 22, 2023
1 parent e223387 commit f28f3db
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 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.2
current_version = 0.1.3
commit = True
tag = True
tag_name = {new_version}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,23 +94,23 @@ jobs:
path: dist
- name: Rename Linux wheels
run: |
cp dist/klujax-0.1.2-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-linux_x86_64.whl \
dist/klujax-0.1.2-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
cp dist/klujax-0.1.3-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-linux_x86_64.whl \
dist/klujax-0.1.3-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
rm dist/*-linux_x86_64.whl
- name: Show dist contents
run: ls dist
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
dist/klujax-0.1.2-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
dist/klujax-0.1.2-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl
dist/klujax-0.1.3-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
dist/klujax-0.1.3-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl
- name: Publish to PyPI
run: |
pip install --user twine \
&& twine upload \
dist/klujax-0.1.2-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl \
dist/klujax-0.1.2-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl \
dist/klujax-0.1.3-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl \
dist/klujax-0.1.3-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl \
--username __token__ \
--password ${{ secrets.PYPI_TOKEN }}
Expand All @@ -129,11 +129,11 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/klujax-0.1.2.tar.gz
files: dist/klujax-0.1.3.tar.gz
- name: Publish to PyPI
run: |
pip install --user twine \
&& twine upload \
dist/klujax-0.1.2.tar.gz \
dist/klujax-0.1.3.tar.gz \
--username __token__ \
--password ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion klujax.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// version: 0.1.2
// version: 0.1.3
// author: Floris Laporte

#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion klujax.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
""" klujax: a KLU solver for JAX """

__version__ = "0.1.2"
__version__ = "0.1.3"
__author__ = "Floris Laporte"
__all__ = ["solve", "coo_mul_vec"]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

setup(
name="klujax",
version="0.1.2",
version="0.1.3",
author="Floris Laporte",
author_email="[email protected]",
description="a KLU solver for JAX",
Expand Down

0 comments on commit f28f3db

Please sign in to comment.