diff --git a/debian/changelog b/debian/changelog index f320147..85a6fe6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +kci-dev (0.1.10-1) unstable; urgency=medium + + * New upstream release. + * Update to version 0.1.10. + + -- Arisu Tachibana Wed, 14 Jan 2026 12:00:00 +0900 + kci-dev (0.1.9-1) unstable; urgency=medium * New upstream release. diff --git a/debian/kci-dev.1 b/debian/kci-dev.1 index c50b32f..f4cc7bc 100644 --- a/debian/kci-dev.1 +++ b/debian/kci-dev.1 @@ -1,4 +1,4 @@ -.TH kci-dev 1 "December 2025" "kci-dev 0.1.9" "User Commands" +.TH kci-dev 1 "January 2026" "kci-dev 0.1.10" "User Commands" .SH NAME kci-dev \- Stand alone command line tool for interacting with KernelCI .SH SYNOPSIS diff --git a/kcidev/main.py b/kcidev/main.py index 7a7e0b5..0df48bd 100755 --- a/kcidev/main.py +++ b/kcidev/main.py @@ -21,7 +21,7 @@ @click.group( help="Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI." ) -@click.version_option("0.1.9", prog_name="kci-dev") +@click.version_option("0.1.10", prog_name="kci-dev") @click.option( "--settings", default=".kci-dev.toml", diff --git a/packaging/arch/.SRCINFO b/packaging/arch/.SRCINFO index 12feecf..ecbf347 100644 --- a/packaging/arch/.SRCINFO +++ b/packaging/arch/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = kci-dev pkgdesc = Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI - pkgver = 0.1.9 + pkgver = 0.1.10 pkgrel = 1 url = https://github.com/kernelci/kci-dev arch = any @@ -18,7 +18,7 @@ pkgbase = kci-dev depends = python-matplotlib optdepends = python-mplcursors: interactive cursor support for plots (AUR) optdepends = bash-completion: bash completion support - source = kci-dev-0.1.9.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v0.1.9.tar.gz + source = kci-dev-0.1.10.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v0.1.10.tar.gz sha256sums = SKIP pkgname = kci-dev diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index 77d678c..bd421b6 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -2,52 +2,52 @@ # https://github.com/kernelci/kci-dev pkgname=kci-dev -pkgver=0.1.9 +pkgver=0.1.10 pkgrel=1 pkgdesc='Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI' arch=('any') url='https://github.com/kernelci/kci-dev' license=('LGPL-2.1-or-later') depends=( - 'python>=3.10' - 'python-click' - 'python-requests' - 'python-gitpython' - 'python-yaml' - 'python-tabulate' - 'python-matplotlib' + 'python>=3.10' + 'python-click' + 'python-requests' + 'python-gitpython' + 'python-yaml' + 'python-tabulate' + 'python-matplotlib' ) makedepends=( - 'python-build' - 'python-installer' - 'python-wheel' - 'python-poetry-core' + 'python-build' + 'python-installer' + 'python-wheel' + 'python-poetry-core' ) optdepends=( - 'python-mplcursors: interactive cursor support for plots (AUR)' - 'bash-completion: bash completion support' + 'python-mplcursors: interactive cursor support for plots (AUR)' + 'bash-completion: bash completion support' ) source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kernelci/kci-dev/archive/refs/tags/v${pkgver}.tar.gz") sha256sums=('SKIP') build() { - cd "${pkgname}-${pkgver}" - python -m build --wheel --no-isolation + cd "${pkgname}-${pkgver}" + python -m build --wheel --no-isolation } package() { - cd "${pkgname}-${pkgver}" - python -m installer --destdir="${pkgdir}" dist/*.whl + cd "${pkgname}-${pkgver}" + python -m installer --destdir="${pkgdir}" dist/*.whl - # Shell completions - install -Dm644 completions/kci-dev-completion.bash \ - "${pkgdir}/usr/share/bash-completion/completions/kci-dev" - install -Dm644 completions/_kci-dev \ - "${pkgdir}/usr/share/zsh/site-functions/_kci-dev" - install -Dm644 completions/kci-dev.fish \ - "${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish" + # Shell completions + install -Dm644 completions/kci-dev-completion.bash \ + "${pkgdir}/usr/share/bash-completion/completions/kci-dev" + install -Dm644 completions/_kci-dev \ + "${pkgdir}/usr/share/zsh/site-functions/_kci-dev" + install -Dm644 completions/kci-dev.fish \ + "${pkgdir}/usr/share/fish/vendor_completions.d/kci-dev.fish" - # License and documentation - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" + # License and documentation + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" } diff --git a/pyproject.toml b/pyproject.toml index bbe0846..8e82af1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kci-dev" -version = "0.1.9" +version = "0.1.10" description = "Stand alone tool for Linux Kernel developers and maintainers to interact with KernelCI" authors = ["Arisu Tachibana "] license = "LGPL-2.1-or-later"