Skip to content

Commit e5b6f36

Browse files
committed
Bump to 1.5.0
1 parent 6472c56 commit e5b6f36

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/python.yml

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

127127
- name: Publish distribution 📦 to PyPI
128-
if: ${{ github.ref == 'refs/tags/v1.4.0' }}
128+
if: ${{ github.ref == 'refs/tags/v1.5.0' }}
129129
uses: pypa/gh-action-pypi-publish@master
130130
with:
131131
password: ${{ secrets.PYPI_TOKEN }}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22

33
project(
44
Ssht
5-
VERSION "1.4.0"
5+
VERSION "1.5.0"
66
DESCRIPTION "Fast and exact spin spherical harmonic transforms"
77
HOMEPAGE_URL "http://astro-informatics.github.io/ssht/"
88
LANGUAGES C)

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ <h2>News</h2>
5151

5252
<ul>
5353

54+
<li><strong>July 2021</strong><br />
55+
Release of SSHT 1.5.0 (<a href="https://pypi.org/project/ducc0/">ducc0</a> forward adjoint)
5456
<li><strong>July 2021</strong><br />
5557
Release of SSHT 1.4.0 (<a href="https://pypi.org/project/ducc0/">ducc0</a>interface)
5658
<li><strong>February 2021</strong><br />

makefile

Lines changed: 1 addition & 1 deletion
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.4.0\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
4+
OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.0\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
55
#OPT = -Wall -g -fopenmp -DSSHT_VERSION=\"1.0b1\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
66

77

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.0
2+
current_version = 1.5.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?

setup.py

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

2828
setup(
2929
name="pyssht",
30-
version="1.4.0",
30+
version="1.5.0",
3131
author=[
3232
"J. D. McEwen",
3333
"C. R. G. Wallis",

0 commit comments

Comments
 (0)