From 2f1f7304696bce3f6645f210b51672d73e5206ac Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Fri, 16 Aug 2024 21:29:03 +0530 Subject: [PATCH] build: Bump version to v0.24.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 87453047d2a..d2cc30e33df 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.24.dev0" +version = "0.24.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 c5ab1430300..d65a9f5a8a4 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, 24, "dev0" +version_info = 0, 24, "0" # Nice string for the version __version__ = ".".join(map(str, version_info))