Skip to content

Commit

Permalink
VER : version 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Revathyvenugopal162 committed Feb 27, 2023
1 parent dba074a commit dcd6d8c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Run PyAnsys code style checks"
uses: pyansys/actions/code-style@v3
uses: pyansys/actions/code-style@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Run Ansys documentation style checks"
uses: pyansys/actions/doc-style@v3
uses: pyansys/actions/doc-style@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -43,7 +43,7 @@ jobs:
needs: doc-style
steps:
- name: "Run Ansys documentation building action"
uses: pyansys/actions/doc-build@v3
uses: pyansys/actions/doc-build@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -54,7 +54,7 @@ jobs:
needs: build-library
steps:
- name: "Deploy developers documentation"
uses: pyansys/actions/doc-deploy-dev@v3
uses: pyansys/actions/doc-deploy-dev@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -66,7 +66,7 @@ jobs:
needs: release
steps:
- name: "Deploy stable documentation"
uses: pyansys/actions/doc-deploy-stable@v3
uses: pyansys/actions/doc-deploy-stable@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -78,7 +78,7 @@ jobs:
needs: [doc-build, code-style]
steps:
- name: "Build library source and wheel artifacts"
uses: pyansys/actions/build-library@v3
uses: pyansys/actions/build-library@v4
with:
library-name: ${{ env.PACKAGE_NAME }}

Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
],
"switcher": {
"json_url": f"https://{cname}/release/versions.json",
"json_url": f"https://{cname}/versions.json",
"version_match": get_version_match(__version__),
},
"use_meilisearch": {
Expand Down
2 changes: 1 addition & 1 deletion src/ansys_sphinx_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from ansys_sphinx_theme.latex import generate_404 # noqa: F401

__version__ = "0.9.4"
__version__ = "0.9.5"


# Declare the fundamental paths of the theme
Expand Down

0 comments on commit dcd6d8c

Please sign in to comment.