Skip to content

Commit 9680da4

Browse files
authored
version bump to 0.8.dev0 (#465)
* version bump to 0.8.dev0 * Use the self-hosted runner for testing, nightly doc build
1 parent 05e7ba1 commit 9680da4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184
build_test:
185185
name: Build and Unit Testing
186186
needs: test-import
187-
runs-on: ubuntu-latest
187+
runs-on: self-hosted
188188

189189
steps:
190190
- uses: actions/checkout@v3

.github/workflows/nightly-doc-build.yml

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

88
jobs:
99
nightly_docs_build:
10-
runs-on: ubuntu-20.04
10+
runs-on: self-hosted
1111

1212
steps:
1313
- uses: actions/checkout@v3

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, 7, "dev0"
9+
version_info = 0, 8, "dev0"
1010

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

0 commit comments

Comments
 (0)