From ae21b8ad80f9303ee4026736b71e9d03f59b5d91 Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Fri, 3 Jan 2025 15:00:27 +0530 Subject: [PATCH] build: Bump version to v0.28.0 --- pyproject.toml | 2 +- src/ansys/fluent/core/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7d21528e1c8..f41070c363d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] # Check https://python-poetry.org/docs/pyproject/ for all available sections name = "ansys-fluent-core" -version = "0.28.dev0" +version = "0.28.0" description = "PyFluent provides Pythonic access to Ansys Fluent" license = "MIT" authors = ["ANSYS, Inc. "] diff --git a/src/ansys/fluent/core/_version.py b/src/ansys/fluent/core/_version.py index 7042815c134..559caaad303 100644 --- a/src/ansys/fluent/core/_version.py +++ b/src/ansys/fluent/core/_version.py @@ -6,7 +6,7 @@ """ # major, minor, patch -version_info = 0, 28, "dev0" +version_info = 0, 28, 0 # Nice string for the version __version__ = ".".join(map(str, version_info))