Skip to content

Commit 6876c03

Browse files
authored
Merge pull request #168 from aliceinwire/release
pyproject(version): Update release to v0.1.7
2 parents fabcd44 + 96200b1 commit 6876c03

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/docs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
--theme PaperMod \
5858
--minify \
5959
--baseURL "${{ steps.pages.outputs.base_url }}/"
60-
- name: Build with Hugo v0.1.6
60+
- name: Build with Hugo v0.1.7
6161
env:
6262
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
6363
HUGO_ENVIRONMENT: production
@@ -66,14 +66,14 @@ jobs:
6666
git fetch --prune --unshallow
6767
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
6868
git fetch --all --tags
69-
git checkout tags/v0.1.6
69+
git checkout tags/v0.1.7
7070
hugo \
7171
--gc \
7272
--theme PaperMod \
7373
--minify \
7474
--baseURL "${{ steps.pages.outputs.base_url }}/v0.1.6/" \
75-
--destination ./public/v0.1.6
76-
- name: Build with Hugo v0.1.5
75+
--destination ./public/v0.1.7
76+
- name: Build with Hugo v0.1.6
7777
env:
7878
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
7979
HUGO_ENVIRONMENT: production
@@ -82,14 +82,14 @@ jobs:
8282
git fetch --prune --unshallow
8383
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
8484
git fetch --all --tags
85-
git checkout tags/v0.1.5
85+
git checkout tags/v0.1.6
8686
hugo \
8787
--gc \
8888
--theme PaperMod \
8989
--minify \
9090
--baseURL "${{ steps.pages.outputs.base_url }}/v0.1.5/" \
91-
--destination ./public/v0.1.5
92-
- name: Build with Hugo v0.1.4
91+
--destination ./public/v0.1.6
92+
- name: Build with Hugo v0.1.5
9393
env:
9494
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
9595
HUGO_ENVIRONMENT: production
@@ -98,13 +98,13 @@ jobs:
9898
git fetch --prune --unshallow
9999
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
100100
git fetch --all --tags
101-
git checkout tags/v0.1.4
101+
git checkout tags/v0.1.5
102102
hugo \
103103
--gc \
104104
--theme PaperMod \
105105
--minify \
106106
--baseURL "${{ steps.pages.outputs.base_url }}/v0.1.4/" \
107-
--destination ./public/v0.1.4
107+
--destination ./public/v0.1.5
108108
- name: Build with Hugo version
109109
env:
110110
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache

kcidev/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@click.group(
2323
help="Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI."
2424
)
25-
@click.version_option("0.1.6", prog_name="kci-dev")
25+
@click.version_option("0.1.7", prog_name="kci-dev")
2626
@click.option(
2727
"--settings",
2828
default=".kci-dev.toml",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "kci-dev"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI"
55
authors = ["Arisu Tachibana <[email protected]>"]
66
license = "LGPL-2.1-or-later"
@@ -42,7 +42,7 @@ kci-dev = 'kcidev.main:run'
4242

4343
[tool.poetry.urls]
4444
"Issue Tracker" = "https://github.com/kernelci/kci-dev/issues"
45-
Documentation = "https://kci.dev/v0.1.6"
45+
Documentation = "https://kci.dev/v0.1.7"
4646
Changelog = "https://github.com/kernelci/kci-dev/releases"
4747

4848
[tool.poetry.group.ci.dependencies]

0 commit comments

Comments
 (0)