Skip to content

Commit

Permalink
build: Bump version to 0.22.0 (#3072)
Browse files Browse the repository at this point in the history
* build: Bump version to 0.22.0

* fix: release doc CI [skip tests] (#3076)

---------

Co-authored-by: Mainak Kundu <94432368+mkundu1@users.noreply.github.com>
  • Loading branch information
hpohekar and mkundu1 authored Jul 16, 2024
1 parent 1ee5a5e commit 01a31a0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/doc-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,18 @@ jobs:
env:
FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}

- name: Install again after codegen
run: |
rm -rf dist
make install > /dev/null
- name: Build All Documentation
run: |
pip install -r requirements/requirements_build.txt
poetry install --only docs
if [ -f poetry.lock ] ; then
rm poetry.lock
fi
poetry install --with docs
make build-all-docs
env:
FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }}
Expand Down
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.22.dev0"
version = "0.22.0"
description = "PyFluent provides Pythonic access to Ansys Fluent"
license = "MIT"
authors = ["ANSYS, Inc. <ansys.support@ansys.com>"]
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, 22, "dev0"
version_info = 0, 22, 0

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

0 comments on commit 01a31a0

Please sign in to comment.