diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e0af0c7..3df72b8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -57,7 +57,7 @@ jobs: --theme PaperMod \ --minify \ --baseURL "${{ steps.pages.outputs.base_url }}/" - - name: Build with Hugo v0.1.5 + - name: Build with Hugo v0.1.6 env: HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache HUGO_ENVIRONMENT: production @@ -66,14 +66,14 @@ jobs: git fetch --prune --unshallow git fetch --depth=1 origin +refs/tags/*:refs/tags/* git fetch --all --tags - git checkout tags/v0.1.5 + git checkout tags/v0.1.6 hugo \ --gc \ --theme PaperMod \ --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/v0.1.5/" \ - --destination ./public/v0.1.5 - - name: Build with Hugo v0.1.4 + --baseURL "${{ steps.pages.outputs.base_url }}/v0.1.6/" \ + --destination ./public/v0.1.6 + - name: Build with Hugo v0.1.5 env: HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache HUGO_ENVIRONMENT: production @@ -82,14 +82,14 @@ jobs: git fetch --prune --unshallow git fetch --depth=1 origin +refs/tags/*:refs/tags/* git fetch --all --tags - git checkout tags/v0.1.4 + git checkout tags/v0.1.5 hugo \ --gc \ --theme PaperMod \ --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/v0.1.4/" \ - --destination ./public/v0.1.4 - - name: Build with Hugo v0.1.3 + --baseURL "${{ steps.pages.outputs.base_url }}/v0.1.5/" \ + --destination ./public/v0.1.5 + - name: Build with Hugo v0.1.4 env: HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache HUGO_ENVIRONMENT: production @@ -98,13 +98,13 @@ jobs: git fetch --prune --unshallow git fetch --depth=1 origin +refs/tags/*:refs/tags/* git fetch --all --tags - git checkout tags/v0.1.3 + git checkout tags/v0.1.4 hugo \ --gc \ --theme PaperMod \ --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/v0.1.3/" \ - --destination ./public/v0.1.3 + --baseURL "${{ steps.pages.outputs.base_url }}/v0.1.4/" \ + --destination ./public/v0.1.4 - name: Build with Hugo version env: HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache diff --git a/kcidev/main.py b/kcidev/main.py index cfa4f8e..b7f096d 100755 --- a/kcidev/main.py +++ b/kcidev/main.py @@ -22,7 +22,7 @@ @click.group( help="Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI." ) -@click.version_option("0.1.5", prog_name="kci-dev") +@click.version_option("0.1.6", prog_name="kci-dev") @click.option( "--settings", default=".kci-dev.toml", diff --git a/pyproject.toml b/pyproject.toml index c2cee5a..cfe91bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kci-dev" -version = "0.1.5" +version = "0.1.6" description = "Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI" authors = ["Arisu Tachibana "] license = "LGPL-2.1-or-later" @@ -42,7 +42,7 @@ kci-dev = 'kcidev.main:run' [tool.poetry.urls] "Issue Tracker" = "https://github.com/kernelci/kci-dev/issues" -Documentation = "https://docs.kernelci.org/kci-dev/" +Documentation = "https://kci.dev/v0.1.6" Changelog = "https://github.com/kernelci/kci-dev/releases" [tool.poetry.group.ci.dependencies]