Skip to content

Commit

Permalink
Bump to 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavezac committed Nov 24, 2020
1 parent 0e501de commit 7a61f0f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: create stable package
shell: bash
run: |
if [ "${{ github.ref }}" = "refs/tags/v1.3.3" ]; then
if [ "${{ github.ref }}" = "refs/tags/v1.3.4" ]; then
channel="stable"
else
channel="testing"
Expand All @@ -54,4 +54,4 @@ jobs:

run: |
conan remote add astro-informatics ${CONAN_REMOTE_URL}
conan upload ssht/1.3.3 -c --all -r=astro-informatics
conan upload ssht/1.3.4 -c --all -r=astro-informatics
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ jobs:
mv source-distribution/*.tar.gz wheel-*/*.whl dist
- name: Publish distribution 📦 to Test PyPI
if: ${{ github.ref != 'refs/tags/v1.3.3' }}
if: ${{ github.ref != 'refs/tags/v1.3.4' }}
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Publish distribution 📦 to PyPI
if: ${{ github.ref == 'refs/tags/v1.3.3' }}
if: ${{ github.ref == 'refs/tags/v1.3.4' }}
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)

project(
Ssht
VERSION "1.3.3"
VERSION "1.3.4"
DESCRIPTION "Fast and exact spin spherical harmonic transforms"
HOMEPAGE_URL "http://astro-informatics.github.io/ssht/"
LANGUAGES C)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[docs-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-url]: https://astro-informatics.github.io/ssht/
[bintray-img]: https://img.shields.io/bintray/v/astro-informatics/astro-informatics/ssht:astro-informatics?label=C%20package
[bintray-url]: https://bintray.com/astro-informatics/astro-informatics/ssht:astro-informatics/1.3.3:stable/link
[bintray-url]: https://bintray.com/astro-informatics/astro-informatics/ssht:astro-informatics/1.3.4:stable/link
[pypi-img]: https://badge.fury.io/py/pyssht.svg
[pypi-url]: https://badge.fury.io/py/pyssht
[codefactor-img]: https://www.codefactor.io/repository/github/astro-informatics/ssht/badge/main
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class SshtConan(ConanFile):
name = "ssht"
version = "1.3.3"
version = "1.3.4"
license = "GPL-3.0"
url = "https://github.com/astro-informatics/ssht"
homepage = "https://github.com/astro-informatics/ssht"
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ======== COMPILER ========

CC = gcc
OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.3.3\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.3.4\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
#OPT = -Wall -g -fopenmp -DSSHT_VERSION=\"1.0b1\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.3
current_version = 1.3.4
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setup(
name="pyssht",
version="1.3.3",
version="1.3.4",
author=[
"J. D. McEwen",
"C. R. G. Wallis",
Expand Down

0 comments on commit 7a61f0f

Please sign in to comment.