Skip to content

Commit 4467f84

Browse files
committed
Version 1.1.1
1 parent d0c394a commit 4467f84

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.1.1.dev0'
10+
PACKAGE_VERSION: '1.1.1'
1111
PACKAGE_NAME: hyhound
1212

1313
jobs:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(hyhound
77
LANGUAGES CXX
88
)
99
include(CTest)
10-
set(PY_VERSION_SUFFIX ".dev0")
10+
set(PY_VERSION_SUFFIX "")
1111

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

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.1.1.dev0"
5+
__version__ = "1.1.1"
66

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

scripts/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = "hyhound"
1010
copyright = "2025, Pieter Pas"
1111
author = "Pieter Pas"
12-
release = "1.1.1.dev0"
12+
release = "1.1.1"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

0 commit comments

Comments
 (0)