Skip to content

Commit 824e786

Browse files
committed
Bump to 1.5.3
1 parent fc265da commit 824e786

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/python.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ jobs:
106106
CIBW_BUILD_FRONTEND: "build[uv]"
107107

108108
- name: Publish distribution 📦 to Test PyPI
109-
if: ${{ github.ref != 'refs/tags/v1.5.2' }}
109+
if: ${{ github.ref != 'refs/tags/v1.5.3' }}
110110
run: "uv publish --publish-url https://test.pypi.org/legacy/ wheelhouse/*.whl"
111111

112112
- name: Publish distribution 📦 to PyPI
113-
if: ${{ github.ref == 'refs/tags/v1.5.2' }}
113+
if: ${{ github.ref == 'refs/tags/v1.5.3' }}
114114
run: "uv publish wheelhouse/*.whl"
115115

116116
publish_sdist:
@@ -130,9 +130,9 @@ jobs:
130130
run: uv build --sdist
131131

132132
- name: Publish distribution 📦 to Test PyPI
133-
if: ${{ github.ref != 'refs/tags/v1.5.2' }}
133+
if: ${{ github.ref != 'refs/tags/v1.5.3' }}
134134
run: "uv publish --publish-url https://test.pypi.org/legacy/ dist/*.tar.gz"
135135

136136
- name: Publish distribution 📦 to PyPI
137-
if: ${{ github.ref == 'refs/tags/v1.5.2' }}
137+
if: ${{ github.ref == 'refs/tags/v1.5.3' }}
138138
run: "uv publish dist/*.tar.gz"

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ else()
66
endif()
77
project(
88
${project_name}
9-
VERSION "1.5.2"
9+
VERSION "1.5.3"
1010
DESCRIPTION "Fast and exact spin spherical harmonic transforms"
1111
HOMEPAGE_URL "http://astro-informatics.github.io/ssht/"
1212
LANGUAGES C)

makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ======== COMPILER ========
22

33
CC = gcc
4-
OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.2\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
4+
OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.3\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
55
#OPT = -Wall -g -fopenmp -DSSHT_VERSION=\"1.0b1\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
66

77

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyssht"
3-
version = "1.5.2"
3+
version = "1.5.3rc1"
44
authors = [
55
{name="J. D. McEwen"},
66
{name="C. R. G. Wallis"},

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.5.2
2+
current_version = 1.5.3
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?

0 commit comments

Comments
 (0)