From bc39b687960d02d386efa14e9d013df00d8647ee Mon Sep 17 00:00:00 2001 From: cbellot Date: Mon, 6 May 2024 15:27:18 +0200 Subject: [PATCH] Bump to 0.12.1 --- pyproject.toml | 2 +- src/ansys/dpf/core/_version.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5fda260850..a146b74d88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["setuptools>=61.0.0", "wheel"] [project] # Check https://setuptools.pypa.io/en/stable/userguide/quickstart.html for all available sections name = "ansys-dpf-core" -version = "0.12.1.dev0" +version = "0.12.1" description = "Data Processing Framework - Python Core " readme = "README.md" requires-python = ">=3.9, <4" diff --git a/src/ansys/dpf/core/_version.py b/src/ansys/dpf/core/_version.py index 78dd9a68c7..9b5b153dfc 100644 --- a/src/ansys/dpf/core/_version.py +++ b/src/ansys/dpf/core/_version.py @@ -1,6 +1,6 @@ """Version for ansys-dpf-core""" # major, minor, patch -version_info = 0, 12, 1, "dev0" +version_info = 0, 12, 1 # Nice string for the version __version__ = ".".join(map(str, version_info)) @@ -24,6 +24,7 @@ class ServerToAnsysVersion: "8.0": "2024R2", "8.1": "2024R2", "8.2": "2024R2", + "9.0": "2025R1", } def __getitem__(self, item):