Skip to content

Commit

Permalink
Bump version: 0.1.4 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Jul 2, 2023
1 parent c1ff0bd commit a5be12b
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.4
current_version = 0.2.0
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 @@ -96,23 +96,23 @@ jobs:
path: dist
- name: Rename Linux wheels
run: |
cp dist/klujax-0.1.4-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-linux_x86_64.whl \
dist/klujax-0.1.4-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
cp dist/klujax-0.2.0-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-linux_x86_64.whl \
dist/klujax-0.2.0-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.4-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
dist/klujax-0.1.4-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl
dist/klujax-0.2.0-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl
dist/klujax-0.2.0-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.4-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl \
dist/klujax-0.1.4-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl \
dist/klujax-0.2.0-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-manylinux2014_x86_64.whl \
dist/klujax-0.2.0-cp${{ matrix.PYTHON_VERSION }}-cp${{ matrix.PYTHON_VERSION }}-win_amd64.whl \
--username __token__ \
--password ${{ secrets.PYPI_TOKEN }}
Expand All @@ -131,11 +131,11 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/klujax-0.1.4.tar.gz
files: dist/klujax-0.2.0.tar.gz
- name: Publish to PyPI
run: |
pip install --user twine \
&& twine upload \
dist/klujax-0.1.4.tar.gz \
dist/klujax-0.2.0.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.4
// version: 0.2.0
// 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.4"
__version__ = "0.2.0"
__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 @@ -70,7 +70,7 @@

setup(
name="klujax",
version="0.1.4",
version="0.2.0",
author="Floris Laporte",
author_email="floris.laporte@gmail.com",
description="a KLU solver for JAX",
Expand Down

0 comments on commit a5be12b

Please sign in to comment.