Skip to content

Commit

Permalink
Bump version 0.12.dev0 (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkundu1 authored Sep 5, 2022
1 parent 31dffe2 commit 81d3ba7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ jobs:
PYFLUENT_START_INSTANCE: 0
FLUENT_IMAGE_TAG: v22.2.0

- name: Upload Coverage Results
- name: Upload 22.2 Coverage Results
uses: actions/upload-artifact@v3
with:
name: HTML-Coverage-tag-222
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/nightly-test-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,25 @@ jobs:
username: ${{ secrets.GH_USERNAME }}
password: ${{ secrets.REPO_DOWNLOAD_PAT }}

- name: Pull Fluent docker image
- name: Pull 22.2 Fluent docker image
run: make docker-pull
env:
FLUENT_IMAGE_TAG: v22.2.0

- name: Run API codegen
- name: Run 22.2 API codegen
run: make api-codegen
env:
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
PYFLUENT_START_INSTANCE: 0
PYFLUENT_LAUNCH_CONTAINER: 1
FLUENT_IMAGE_TAG: v22.2.0

- name: Pull Fluent docker image
- name: Pull 23.1 Fluent docker image
run: make docker-pull
env:
FLUENT_IMAGE_TAG: v23.1.0

- name: Run API codegen
- name: Run 23.1 API codegen
run: make api-codegen
env:
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
Expand All @@ -76,21 +76,21 @@ jobs:
rm -rf dist
make install > /dev/null
- name: Unit Testing
- name: 22.2 Unit Testing
run: make unittest-all-222
env:
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
PYFLUENT_START_INSTANCE: 0
FLUENT_IMAGE_TAG: v22.2.0

- name: Upload Coverage Results
- name: Upload 22.2 Coverage Results
uses: actions/upload-artifact@v3
with:
name: HTML-Coverage-tag-222
path: cov_html
retention-days: 7

- name: Unit Testing
- name: 23.1 Unit Testing
run: make unittest-all-231
env:
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
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, 11, "dev4"
version_info = 0, 12, "dev0"

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

0 comments on commit 81d3ba7

Please sign in to comment.