diff --git a/.github/workflows/build-sphinx.yml b/.github/workflows/build-sphinx.yml index f4e3b74c6237..38c001f0999c 100644 --- a/.github/workflows/build-sphinx.yml +++ b/.github/workflows/build-sphinx.yml @@ -55,7 +55,7 @@ jobs: sudo apt-get install -y nvidia-cuda-toolkit clinfo - name: Checkout repo - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.2 # https://github.com/marketplace/actions/setup-miniconda - name: Setup miniconda @@ -108,7 +108,7 @@ jobs: if: | !github.event.pull_request.head.repo.fork && (github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/')) - uses: peaceiris/actions-gh-pages@v3.9.2 + uses: peaceiris/actions-gh-pages@v3.9.3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: doc/_build/html/ diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index fbfe66ff17b9..2f9a94db6914 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -50,7 +50,7 @@ jobs: access_token: ${{ github.token }} - name: Checkout DPNP repo - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.2 with: fetch-depth: 0 @@ -76,7 +76,7 @@ jobs: run: conda install conda-build - name: Cache conda packages - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 env: CACHE_NUMBER: 1 # Increase to reset cache with: @@ -169,7 +169,7 @@ jobs: TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}' - name: Cache conda packages - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 env: CACHE_NUMBER: 1 # Increase to reset cache with: @@ -294,7 +294,7 @@ jobs: run: more lockfile - name: Cache conda packages - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 env: CACHE_NUMBER: 1 # Increase to reset cache with: diff --git a/.github/workflows/generate_coverage.yaml b/.github/workflows/generate_coverage.yaml index 75feca67e560..d4158d212d43 100644 --- a/.github/workflows/generate_coverage.yaml +++ b/.github/workflows/generate_coverage.yaml @@ -24,7 +24,7 @@ jobs: access_token: ${{ github.token }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 with: fetch-depth: 0 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 770aea0dc65a..905f4b6c3656 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -9,8 +9,8 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 - - uses: actions/setup-python@v4.5.0 + - uses: actions/checkout@v3.5.2 + - uses: actions/setup-python@v4.6.1 with: python-version: '3.10' - uses: pre-commit/action@v3.0.0 diff --git a/doc/conf.py b/doc/conf.py index 532715c4e44d..14ad9efe447e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -33,7 +33,7 @@ # The short X.Y version version = '0.11' # The full version, including alpha/beta/rc tags -release = '0.11.1' +release = '0.11.2dev1' # -- General configuration --------------------------------------------------- diff --git a/dpnp/backend/doc/Doxyfile b/dpnp/backend/doc/Doxyfile index 3d6c971a7991..25dbd8972c48 100644 --- a/dpnp/backend/doc/Doxyfile +++ b/dpnp/backend/doc/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "DPNP C++ backend kernel library" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.11.1 +PROJECT_NUMBER = 0.11.2dev1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/dpnp/version.py b/dpnp/version.py index f09ea3c76a75..8fa967380a84 100644 --- a/dpnp/version.py +++ b/dpnp/version.py @@ -29,6 +29,6 @@ DPNP version module """ -__version__: str = '0.11.1' +__version__: str = '0.11.2dev1' version: str = __version__