Skip to content

Commit 620f288

Browse files
committed
pyproject(version): Update release to v0.1.10
Signed-off-by: Arisu Tachibana <[email protected]>
1 parent 7fb33dc commit 620f288

File tree

6 files changed

+40
-33
lines changed

6 files changed

+40
-33
lines changed

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
kci-dev (0.1.10-1) unstable; urgency=medium
2+
3+
* New upstream release.
4+
* Update to version 0.1.10.
5+
6+
-- Arisu Tachibana <[email protected]> Wed, 14 Jan 2026 12:00:00 +0900
7+
18
kci-dev (0.1.9-1) unstable; urgency=medium
29

310
* New upstream release.

debian/kci-dev.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH kci-dev 1 "December 2025" "kci-dev 0.1.9" "User Commands"
1+
.TH kci-dev 1 "January 2026" "kci-dev 0.1.10" "User Commands"
22
.SH NAME
33
kci-dev \- Stand alone command line tool for interacting with KernelCI
44
.SH SYNOPSIS

kcidev/main.py

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

packaging/arch/.SRCINFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pkgbase = kci-dev
22
pkgdesc = Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI
3-
pkgver = 0.1.9
3+
pkgver = 0.1.10
44
pkgrel = 1
55
url = https://github.com/kernelci/kci-dev
66
arch = any
@@ -18,7 +18,7 @@ pkgbase = kci-dev
1818
depends = python-matplotlib
1919
optdepends = python-mplcursors: interactive cursor support for plots (AUR)
2020
optdepends = bash-completion: bash completion support
21-
source = kci-dev-0.1.9.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v0.1.9.tar.gz
21+
source = kci-dev-0.1.10.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v0.1.9.tar.gz
2222
sha256sums = SKIP
2323

2424
pkgname = kci-dev

packaging/arch/PKGBUILD

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,52 @@
22
# https://github.com/kernelci/kci-dev
33

44
pkgname=kci-dev
5-
pkgver=0.1.9
5+
pkgver=0.1.10
66
pkgrel=1
77
pkgdesc='Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI'
88
arch=('any')
99
url='https://github.com/kernelci/kci-dev'
1010
license=('LGPL-2.1-or-later')
1111
depends=(
12-
'python>=3.10'
13-
'python-click'
14-
'python-requests'
15-
'python-gitpython'
16-
'python-yaml'
17-
'python-tabulate'
18-
'python-matplotlib'
12+
'python>=3.10'
13+
'python-click'
14+
'python-requests'
15+
'python-gitpython'
16+
'python-yaml'
17+
'python-tabulate'
18+
'python-matplotlib'
1919
)
2020
makedepends=(
21-
'python-build'
22-
'python-installer'
23-
'python-wheel'
24-
'python-poetry-core'
21+
'python-build'
22+
'python-installer'
23+
'python-wheel'
24+
'python-poetry-core'
2525
)
2626
optdepends=(
27-
'python-mplcursors: interactive cursor support for plots (AUR)'
28-
'bash-completion: bash completion support'
27+
'python-mplcursors: interactive cursor support for plots (AUR)'
28+
'bash-completion: bash completion support'
2929
)
3030
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v${pkgver}.tar.gz")
3131
sha256sums=('SKIP')
3232

3333
build() {
34-
cd "${pkgname}-${pkgver}"
35-
python -m build --wheel --no-isolation
34+
cd "${pkgname}-${pkgver}"
35+
python -m build --wheel --no-isolation
3636
}
3737

3838
package() {
39-
cd "${pkgname}-${pkgver}"
40-
python -m installer --destdir="${pkgdir}" dist/*.whl
39+
cd "${pkgname}-${pkgver}"
40+
python -m installer --destdir="${pkgdir}" dist/*.whl
4141

42-
# Shell completions
43-
install -Dm644 completions/kci-dev-completion.bash \
44-
"${pkgdir}/usr/share/bash-completion/completions/kci-dev"
45-
install -Dm644 completions/_kci-dev \
46-
"${pkgdir}/usr/share/zsh/site-functions/_kci-dev"
47-
install -Dm644 completions/kci-dev.fish \
48-
"${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish"
42+
# Shell completions
43+
install -Dm644 completions/kci-dev-completion.bash \
44+
"${pkgdir}/usr/share/bash-completion/completions/kci-dev"
45+
install -Dm644 completions/_kci-dev \
46+
"${pkgdir}/usr/share/zsh/site-functions/_kci-dev"
47+
install -Dm644 completions/kci-dev.fish \
48+
"${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish"
4949

50-
# License and documentation
51-
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
52-
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
50+
# License and documentation
51+
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
52+
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
5353
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "kci-dev"
3-
version = "0.1.9"
3+
version = "0.1.10"
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"

0 commit comments

Comments
 (0)