Skip to content

Commit 26fb2f9

Browse files
committed
Bump version
1 parent 6e5be10 commit 26fb2f9

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

‎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.20 FATAL_ERROR)
22
project(
33
ViennaLS
44
LANGUAGES CXX
5-
VERSION 5.0.0)
5+
VERSION 5.0.1)
66

77
# --------------------------------------------------------------------------------------------------------
88
# Library options

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ We recommend using [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) to consum
157157

158158
* Installation with CPM
159159
```cmake
160-
CPMAddPackage("gh:viennatools/viennals@5.0.0")
160+
CPMAddPackage("gh:viennatools/viennals@5.0.1")
161161
```
162162

163163
* With a local installation

‎include/viennals/lsVersion.hpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
namespace viennals {
66

77
// Version information generated by CMake
8-
inline constexpr const char *version = "5.0.0";
8+
inline constexpr const char *version = "5.0.1";
99
inline constexpr int versionMajor = 5;
1010
inline constexpr int versionMinor = 0;
11-
inline constexpr int versionPatch = 0;
11+
inline constexpr int versionPatch = 1;
1212

1313
// Utility functions for version comparison
1414
inline constexpr uint32_t versionAsInteger() {

‎pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
build-backend = "scikit_build_core.build"
77

88
[project]
9-
version = "5.0.0"
9+
version = "5.0.1"
1010
name = "ViennaLS"
1111
readme = "README.md"
1212
license = {file = "LICENSE"}

‎python/viennals/__init__.pyi‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,6 @@ def setDimension(d: int):
160160
"""
161161

162162
PROXY_DIM: int = 2
163-
__version__: str = "5.0.0"
164-
version: str = "5.0.0"
163+
__version__: str = "5.0.1"
164+
version: str = "5.0.1"
165165
_C = _core

‎python/viennals/_core.pyi‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,5 +728,5 @@ class VoidTopSurfaceEnum(enum.IntEnum):
728728

729729
def setNumThreads(arg0: typing.SupportsInt) -> None: ...
730730

731-
__version__: str = "5.0.0"
732-
version: str = "5.0.0"
731+
__version__: str = "5.0.1"
732+
version: str = "5.0.1"

0 commit comments

Comments
 (0)