Skip to content

Commit 2b17ded

Browse files
committed
chore: bump version, prepare release
1 parent c5ffedb commit 2b17ded

8 files changed

Lines changed: 11 additions & 75 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
22
project(
33
ViennaPS
44
LANGUAGES CXX C
5-
VERSION 4.3.0)
5+
VERSION 4.4.0)
66

77
# --------------------------------------------------------------------------------------------------------
88
# Include guards
@@ -126,7 +126,6 @@ CPMAddPackage(
126126
CPMAddPackage(
127127
NAME ViennaLS
128128
VERSION 5.7.1
129-
GIT_TAG master
130129
GIT_REPOSITORY "https://github.com/ViennaTools/ViennaLS"
131130
EXCLUDE_FROM_ALL ${VIENNAPS_BUILD_PYTHON}
132131
OPTIONS "VIENNALS_PRECOMPILE_HEADERS ${VIENNAPS_PRECOMPILE_HEADERS}")
@@ -183,7 +182,7 @@ if(VIENNAPS_PRECOMPILE_HEADERS)
183182
target_sources(
184183
${LIB_NAME}
185184
PRIVATE "lib/specMain.cpp" "lib/specGeometries.cpp" "lib/specModelsEmulation.cpp"
186-
"lib/specModelsSimulation.cpp" "lib/specProcess.cpp" "lib/MaterialRegistry.cpp")
185+
"lib/specModelsSimulation.cpp" "lib/specProcess.cpp")
187186

188187
set_target_properties(
189188
${LIB_NAME}

README.md

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

131131
* Installation with CPM
132132
```cmake
133-
CPMAddPackage("gh:viennatools/viennaps@4.3.0")
133+
CPMAddPackage("gh:viennatools/viennaps@4.4.0")
134134
```
135135

136136
* With a local installation

include/viennaps/psVersion.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace viennaps {
44

55
// Version information generated by CMake
6-
inline constexpr const char *version = "4.3.0";
6+
inline constexpr const char *version = "4.4.0";
77
inline constexpr int versionMajor = 4;
8-
inline constexpr int versionMinor = 3;
8+
inline constexpr int versionMinor = 4;
99
inline constexpr int versionPatch = 0;
1010

1111
// Utility functions for version comparison

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["scikit-build-core", "pybind11"]
33
build-backend = "scikit_build_core.build"
44

55
[project]
6-
version = "4.3.0"
6+
version = "4.4.0"
77
name = "ViennaPS"
88
readme = "README.md"
99
license = { file = "LICENSE" }

python/scripts/materialColorTable.py

Lines changed: 0 additions & 63 deletions
This file was deleted.

python/viennaps/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,6 @@ def setDimension(d: int):
147147
148148
"""
149149
PROXY_DIM: int = 2
150-
__version__: str = '4.3.0'
151-
version: str = '4.3.0'
150+
__version__: str = '4.4.0'
151+
version: str = '4.4.0'
152152
_C = _core

python/viennaps/_core/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1571,5 +1571,5 @@ def gpuAvailable() -> bool:
15711571
"""
15721572
def setNumThreads(arg0: typing.SupportsInt | typing.SupportsIndex) -> None:
15731573
...
1574-
__version__: str = '4.3.0'
1575-
version: str = '4.3.0'
1574+
__version__: str = '4.4.0'
1575+
version: str = '4.4.0'

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "viennaps-ci",
3-
"version-string": "4.3.0",
3+
"version-string": "4.4.0",
44
"dependencies": [
55
"vtk",
66
"embree"

0 commit comments

Comments
 (0)