Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
- "*"
branches:
- main
- release/*
Copy link
Contributor

@mkundu1 mkundu1 Jan 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CI failure was due to failing branch name style action. On pushing release/* branch, the branch name is evaluated as refs/heads/release/0.19.0 instead of release/0.19.0.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @mkundu1


concurrency:
group: ${{ github.ref }}
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, 19, "dev2"
version_info = 0, 19, 0

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand Down