Skip to content

Commit a7aa9af

Browse files
committed
Update versions
1 parent 2e9b9e3 commit a7aa9af

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
sudo apt-get install -y nvidia-cuda-toolkit clinfo
5656
5757
- name: Checkout repo
58-
uses: actions/checkout@v3.3.0
58+
uses: actions/checkout@v3.5.2
5959

6060
# https://github.com/marketplace/actions/setup-miniconda
6161
- name: Setup miniconda
@@ -108,7 +108,7 @@ jobs:
108108
if: |
109109
!github.event.pull_request.head.repo.fork &&
110110
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
111-
uses: peaceiris/[email protected].2
111+
uses: peaceiris/[email protected].3
112112
with:
113113
github_token: ${{ secrets.GITHUB_TOKEN }}
114114
publish_dir: doc/_build/html/

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
access_token: ${{ github.token }}
5151

5252
- name: Checkout DPNP repo
53-
uses: actions/checkout@v3.3.0
53+
uses: actions/checkout@v3.5.2
5454
with:
5555
fetch-depth: 0
5656

@@ -76,7 +76,7 @@ jobs:
7676
run: conda install conda-build
7777

7878
- name: Cache conda packages
79-
uses: actions/cache@v3.2.6
79+
uses: actions/cache@v3.3.0
8080
env:
8181
CACHE_NUMBER: 1 # Increase to reset cache
8282
with:
@@ -169,7 +169,7 @@ jobs:
169169
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
170170

171171
- name: Cache conda packages
172-
uses: actions/cache@v3.2.6
172+
uses: actions/cache@v3.3.0
173173
env:
174174
CACHE_NUMBER: 1 # Increase to reset cache
175175
with:
@@ -294,7 +294,7 @@ jobs:
294294
run: more lockfile
295295

296296
- name: Cache conda packages
297-
uses: actions/cache@v3.2.6
297+
uses: actions/cache@v3.3.0
298298
env:
299299
CACHE_NUMBER: 1 # Increase to reset cache
300300
with:

.github/workflows/generate_coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
access_token: ${{ github.token }}
2525

2626
- name: Checkout repo
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v3.5.2
2828
with:
2929
fetch-depth: 0
3030

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3.3.0
13-
- uses: actions/setup-python@v4.5.0
12+
- uses: actions/checkout@v3.5.2
13+
- uses: actions/setup-python@v4.6.1
1414
with:
1515
python-version: '3.10'
1616
- uses: pre-commit/[email protected]

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# The short X.Y version
3434
version = '0.11'
3535
# The full version, including alpha/beta/rc tags
36-
release = '0.11.1'
36+
release = '0.11.2dev1'
3737

3838

3939
# -- General configuration ---------------------------------------------------

dpnp/backend/doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "DPNP C++ backend kernel library"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.11.1
41+
PROJECT_NUMBER = 0.11.2dev1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

dpnp/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
DPNP version module
3030
"""
3131

32-
__version__: str = '0.11.1'
32+
__version__: str = '0.11.2dev1'
3333

3434
version: str = __version__

0 commit comments

Comments
 (0)