Skip to content

Commit 81d3ba7

Browse files
authored
Bump version 0.12.dev0 (#833)
1 parent 31dffe2 commit 81d3ba7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ jobs:
346346
PYFLUENT_START_INSTANCE: 0
347347
FLUENT_IMAGE_TAG: v22.2.0
348348

349-
- name: Upload Coverage Results
349+
- name: Upload 22.2 Coverage Results
350350
uses: actions/upload-artifact@v3
351351
with:
352352
name: HTML-Coverage-tag-222

.github/workflows/nightly-test-run.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,25 +45,25 @@ jobs:
4545
username: ${{ secrets.GH_USERNAME }}
4646
password: ${{ secrets.REPO_DOWNLOAD_PAT }}
4747

48-
- name: Pull Fluent docker image
48+
- name: Pull 22.2 Fluent docker image
4949
run: make docker-pull
5050
env:
5151
FLUENT_IMAGE_TAG: v22.2.0
5252

53-
- name: Run API codegen
53+
- name: Run 22.2 API codegen
5454
run: make api-codegen
5555
env:
5656
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
5757
PYFLUENT_START_INSTANCE: 0
5858
PYFLUENT_LAUNCH_CONTAINER: 1
5959
FLUENT_IMAGE_TAG: v22.2.0
6060

61-
- name: Pull Fluent docker image
61+
- name: Pull 23.1 Fluent docker image
6262
run: make docker-pull
6363
env:
6464
FLUENT_IMAGE_TAG: v23.1.0
6565

66-
- name: Run API codegen
66+
- name: Run 23.1 API codegen
6767
run: make api-codegen
6868
env:
6969
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
@@ -76,21 +76,21 @@ jobs:
7676
rm -rf dist
7777
make install > /dev/null
7878
79-
- name: Unit Testing
79+
- name: 22.2 Unit Testing
8080
run: make unittest-all-222
8181
env:
8282
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}
8383
PYFLUENT_START_INSTANCE: 0
8484
FLUENT_IMAGE_TAG: v22.2.0
8585

86-
- name: Upload Coverage Results
86+
- name: Upload 22.2 Coverage Results
8787
uses: actions/upload-artifact@v3
8888
with:
8989
name: HTML-Coverage-tag-222
9090
path: cov_html
9191
retention-days: 7
9292

93-
- name: Unit Testing
93+
- name: 23.1 Unit Testing
9494
run: make unittest-all-231
9595
env:
9696
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }}

src/ansys/fluent/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
# major, minor, patch
9-
version_info = 0, 11, "dev4"
9+
version_info = 0, 12, "dev0"
1010

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

0 commit comments

Comments
 (0)