Skip to content

Commit ab5d1ca

Browse files
committed
Version 1.0.2a1
1 parent 7aa7b56 commit ab5d1ca

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
types: ['released', 'prereleased']
88

99
env:
10-
PACKAGE_VERSION: '1.0.1'
10+
PACKAGE_VERSION: '1.0.2a1'
1111
PACKAGE_NAME: hyhound
1212

1313
jobs:

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cmake_minimum_required(VERSION 3.24...4.1)
22
set(CMAKE_CXX_SCAN_FOR_MODULES Off)
33
project(hyhound
4-
VERSION 1.0.1
4+
VERSION 1.0.2
55
DESCRIPTION "Hyperbolic Householder transformations for Cholesky factorization up- and downdates"
66
HOMEPAGE_URL "https://github.com/kul-optec/hyhound"
77
LANGUAGES CXX
88
)
99
include(CTest)
10-
set(PY_VERSION_SUFFIX "")
10+
set(PY_VERSION_SUFFIX "a1")
1111

1212
# Make sure that the Python and CMake versions match
1313
set(PY_FULL_VERSION ${PROJECT_VERSION}${PY_VERSION_SUFFIX})

conanfile.py

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

1010
class HyhoundRecipe(ConanFile):
1111
name = "hyhound"
12-
version = "1.0.1"
12+
version = "1.0.2-alpha.1"
1313

1414
# Optional metadata
1515
license = "LGPL-3.0-or-later"

python/hyhound/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Hyperbolic Householder transformations for Up- and Downdating Cholesky factorizations.
33
"""
44

5-
__version__ = "1.0.1"
5+
__version__ = "1.0.2a1"
66

77
from ._hyhound import * # noqa: F403
88
from ._hyhound import __version__ as __c_version__ # noqa: F401

0 commit comments

Comments
 (0)