Skip to content

Commit bc39b68

Browse files
committed
Bump to 0.12.1
1 parent b9de698 commit bc39b68

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools>=61.0.0", "wheel"]
55
[project]
66
# Check https://setuptools.pypa.io/en/stable/userguide/quickstart.html for all available sections
77
name = "ansys-dpf-core"
8-
version = "0.12.1.dev0"
8+
version = "0.12.1"
99
description = "Data Processing Framework - Python Core "
1010
readme = "README.md"
1111
requires-python = ">=3.9, <4"

src/ansys/dpf/core/_version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Version for ansys-dpf-core"""
22
# major, minor, patch
3-
version_info = 0, 12, 1, "dev0"
3+
version_info = 0, 12, 1
44

55
# Nice string for the version
66
__version__ = ".".join(map(str, version_info))
@@ -24,6 +24,7 @@ class ServerToAnsysVersion:
2424
"8.0": "2024R2",
2525
"8.1": "2024R2",
2626
"8.2": "2024R2",
27+
"9.0": "2025R1",
2728
}
2829

2930
def __getitem__(self, item):

0 commit comments

Comments
 (0)