Skip to content

Commit 3cb820a

Browse files
committed
Bump to 1.3.4
1 parent 5439ce4 commit 3cb820a

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ jobs:
119119
mv source-distribution/*.tar.gz wheel-*/*.whl dist
120120
121121
- name: Publish distribution 📦 to Test PyPI
122-
if: ${{ github.ref != 'refs/tags/v1.3.3' }}
122+
if: ${{ github.ref != 'refs/tags/v1.3.4' }}
123123
uses: pypa/gh-action-pypi-publish@master
124124
with:
125125
password: ${{ secrets.TEST_PYPI_TOKEN }}
126126
repository_url: https://test.pypi.org/legacy/
127127

128128
- name: Publish distribution 📦 to PyPI
129-
if: ${{ github.ref == 'refs/tags/v1.3.3' }}
129+
if: ${{ github.ref == 'refs/tags/v1.3.4' }}
130130
uses: pypa/gh-action-pypi-publish@master
131131
with:
132132
password: ${{ secrets.PYPI_TOKEN }}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12)
22
project(
33
so3
4-
VERSION "1.3.3"
4+
VERSION "1.3.4"
55
DESCRIPTION "Fast and exact Wigner transforms"
66
HOMEPAGE_URL "http://astro-informatics.github.io/so3/"
77
LANGUAGES C)

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
CC = gcc
55

66
#OPT = -Wall -O3 -fopenmp -DSO3_VERSION=\"0.1\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
7-
OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.3\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
7+
OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.4\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
88

99

1010
# ======== LINKS ========

setup.cfg

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
[bumpversion]
2-
current_version = 1.3.3
2+
current_version = 1.3.4
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
66
serialize =
77
{major}.{minor}.{patch}rc{rc}
88
{major}.{minor}.{patch}
99

10-
[bumpversion:file:README.md]
11-
1210
[bumpversion:file:setup.py]
1311

14-
[bumpversion:file:conanfile.py]
15-
1612
[bumpversion:file:makefile]
1713

1814
[bumpversion:file:CMakelists.txt]
1915

20-
[bumpversion:file:.github/workflows/conan.yml]
21-
2216
[bumpversion:file:.github/workflows/python.yml]
2317

2418
[flake8]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name="so3",
11-
version="1.3.3",
11+
version="1.3.4",
1212
author="Jason McEwen",
1313
install_requires=["numpy", "scipy"],
1414
extras_require={

0 commit comments

Comments
 (0)