Skip to content

Commit e0420c0

Browse files
committed
Bump to version 2.2.2
1 parent 8831b57 commit e0420c0

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/conan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: create package with fpic=${{matrix.fpic}} cfitsio=${{matrix.cfitsio}}
3838
shell: bash
3939
run: |
40-
if [ "${{ github.ref }}" = "refs/tags/v2.2.1" ]; then
40+
if [ "${{ github.ref }}" = "refs/tags/v2.2.2" ]; then
4141
channel="stable"
4242
else
4343
channel="testing"
@@ -55,4 +55,4 @@ jobs:
5555
CONAN_PASSWORD: ${{secrets.BINTRAY_TOKEN}}
5656
CONAN_LOGIN_USERNAME: astroinformaticsci
5757
CONAN_REMOTE_URL: https://api.bintray.com/conan/astro-informatics/astro-informatics
58-
run: conan upload s2let/2.2.1 -c --all -r=astro-informatics
58+
run: conan upload s2let/2.2.2 -c --all -r=astro-informatics

.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/v2.2.1' }}
122+
if: ${{ github.ref != 'refs/tags/v2.2.2' }}
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/v2.2.1' }}
129+
if: ${{ github.ref == 'refs/tags/v2.2.2' }}
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
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22

33
project(
44
s2let
5-
VERSION "2.2.1"
5+
VERSION "2.2.2"
66
DESCRIPTION "Fast wavelets on the sphere"
77
HOMEPAGE_URL "http://astro-informatics.github.io/s2let/"
88
LANGUAGES C)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[docs-img]: https://img.shields.io/badge/docs-stable-blue.svg
44
[docs-url]: https://astro-informatics.github.io/s2let/
55
[bintray-img]: https://img.shields.io/bintray/v/astro-informatics/astro-informatics/s2let:astro-informatics?label=C%20package
6-
[bintray-url]: https://bintray.com/astro-informatics/astro-informatics/s2let:astro-informatics/2.2.1:stable/link
6+
[bintray-url]: https://bintray.com/astro-informatics/astro-informatics/s2let:astro-informatics/2.2.2:stable/link
77
[pypi-img]: https://badge.fury.io/py/pys2let.svg
88
[pypi-url]: https://badge.fury.io/py/pys2let
99
[codefactor-img]: https://www.codefactor.io/repository/github/astro-informatics/s2let/badge/main

conanfile.py

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

44
class S2letConan(ConanFile):
55
name = "s2let"
6-
version = "2.2.1"
6+
version = "2.2.2"
77
license = "GPL-2.0"
88
url = "https://github.com/astro-informatics/s2let"
99
homepage = "https://github.com/astro-informatics/s2let"

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ <h2>News</h2>
8888
<img src="https://img.shields.io/badge/docs-stable-blue.svg">
8989
</a>
9090

91-
<a href="https://bintray.com/astro-informatics/astro-informatics/s2let:astro-informatics/2.2.1:stable/link">
91+
<a href="https://bintray.com/astro-informatics/astro-informatics/s2let:astro-informatics/2.2.2:stable/link">
9292
<img src="https://img.shields.io/bintray/v/astro-informatics/astro-informatics/s2let:astro-informatics?label=C%20package"/>
9393
</a>
9494

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ UNAME := $(shell uname)
2727

2828
# Compilers and options for C
2929
CC = gcc
30-
OPT = -Wall -g -fPIC -fopenmp -DS2LET_VERSION=\"2.2.1\" -DS2LET_BUILD=\"`git rev-parse HEAD`\"
30+
OPT = -Wall -g -fPIC -fopenmp -DS2LET_VERSION=\"2.2.2\" -DS2LET_BUILD=\"`git rev-parse HEAD`\"
3131

3232
# Compilers and options for Fortran
3333
FCC = gfortran

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 = 2.2.1
2+
current_version = 2.2.2
33
commit = False
44
tag = False
55

setup.py

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

2121
setup(
2222
name="pys2let",
23-
version="2.2.1",
23+
version="2.2.2",
2424
author=["Boris Leistedt", "Martin Büttner", "Jennifer Chan", "Jason McEwen"],
2525
install_requires=["numpy"],
2626
extras_require={

src/doxygen.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = S2LET
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 2.2.1
34+
PROJECT_NUMBER = 2.2.2
3535

3636
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3737
# for a project that appears at the top of each page and should give viewer

0 commit comments

Comments
 (0)