Skip to content

Commit

Permalink
build: Bump version to v0.28.1 (#3619)
Browse files Browse the repository at this point in the history
* fix: TypeError from journal_name (#3614)

fix: TypeError from jounral_name

* build: Bump version to v0.28.1

---------

Co-authored-by: Mainak Kundu <[email protected]>
  • Loading branch information
prmukherj and mkundu1 authored Jan 8, 2025
1 parent c3c7f0b commit b9bb39b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0"
version = "0.28.1"
description = "PyFluent provides Pythonic access to Ansys Fluent"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# major, minor, patch
version_info = 0, 28, 0
version_info = 0, 28, 1

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand Down
3 changes: 2 additions & 1 deletion src/ansys/fluent/core/services/app_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,8 @@ def get_app_mode(self) -> Enum:
def start_python_journal(self, journal_name: str | None = None) -> int:
"""Start python journal."""
request = AppUtilitiesProtoModule.StartPythonJournalRequest()
request.journal_name = journal_name
if journal_name:
request.journal_name = journal_name
response = self.service.start_python_journal(request)
return response.journal_id

Expand Down

0 comments on commit b9bb39b

Please sign in to comment.