From e7d098d17e862dcefb1fa0f2e2f1a1e9fe2489af Mon Sep 17 00:00:00 2001 From: Shiv Verma Date: Thu, 26 Feb 2026 10:54:20 +0530 Subject: [PATCH 1/2] update goreleaser version to compatible version Signed-off-by: Shiv Verma --- tekton/release-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekton/release-pipeline.yml b/tekton/release-pipeline.yml index 05fba560f0..303460d8e2 100644 --- a/tekton/release-pipeline.yml +++ b/tekton/release-pipeline.yml @@ -104,7 +104,7 @@ spec: - name: github-token-secret-key value: $(params.github-token-secret-key) - name: image - value: goreleaser/goreleaser:v2.13.3 + value: goreleaser/goreleaser:v2.14.0 - name: flags value: --timeout=60m workspaces: From f0c7635219371e7bb6dc4b0fcb12ad1ffcb35145 Mon Sep 17 00:00:00 2001 From: Shiv Verma Date: Thu, 26 Feb 2026 10:52:49 +0530 Subject: [PATCH 2/2] Update CLI docs for v0.44.0 release signed-off-by: Shiv Verma --- README.md | 44 +++++++++++++++---------------- choco/README.md | 2 +- choco/tektoncd-cli.nuspec | 2 +- choco/tools/chocolateyinstall.ps1 | 4 +-- releases.md | 9 +++++++ 5 files changed, 35 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index ae8dec2b6a..decac53353 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,13 @@ Download the latest binary executable for your operating system. brew install tektoncd-cli ``` -- Use [released tarball](https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Darwin_all.tar.gz) +- Use [released tarball](https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Darwin_all.tar.gz) ```shell # Get the tar.xz - curl -LO https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Darwin_all.tar.gz + curl -LO https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Darwin_all.tar.gz # Extract tkn to your PATH (e.g. /usr/local/bin) - sudo tar xvzf tkn_0.43.0_Darwin_all.tar.gz -C /usr/local/bin tkn + sudo tar xvzf tkn_0.44.0_Darwin_all.tar.gz -C /usr/local/bin tkn ``` ### Windows @@ -44,13 +44,13 @@ choco install tektoncd-cli --confirm scoop install tektoncd-cli ``` -- Use [Powershell](https://docs.microsoft.com/en-us/powershell) [released zip](https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Windows_x86_64.zip) +- Use [Powershell](https://docs.microsoft.com/en-us/powershell) [released zip](https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Windows_x86_64.zip) ```powershell #Create directory New-Item -Path "$HOME/tektoncd/cli" -Type Directory # Download file -Start-BitsTransfer -Source https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Windows_x86_64.zip -Destination "$HOME/tektoncd/cli/." +Start-BitsTransfer -Source https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Windows_x86_64.zip -Destination "$HOME/tektoncd/cli/." # Uncompress zip file Expand-Archive $HOME/tektoncd/cli/*.zip -DestinationPath C:\Users\Developer\tektoncd\cli\. #Add to Windows `Environment Variables` @@ -59,40 +59,40 @@ Expand-Archive $HOME/tektoncd/cli/*.zip -DestinationPath C:\Users\Developer\tekt ### Linux tarballs -- [Linux AMD 64](https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_x86_64.tar.gz) +- [Linux AMD 64](https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_x86_64.tar.gz) ```shell # Get the tar.xz - curl -LO https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_x86_64.tar.gz + curl -LO https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_x86_64.tar.gz # Extract tkn to your PATH (e.g. /usr/local/bin) - sudo tar xvzf tkn_0.43.0_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn + sudo tar xvzf tkn_0.44.0_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn ``` -- [Linux AARCH 64](https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_aarch64.tar.gz) +- [Linux AARCH 64](https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_aarch64.tar.gz) ```shell # Get the tar.xz - curl -LO https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_aarch64.tar.gz + curl -LO https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_aarch64.tar.gz # Extract tkn to your PATH (e.g. /usr/local/bin) - sudo tar xvzf tkn_0.43.0_Linux_aarch64.tar.gz -C /usr/local/bin/ tkn + sudo tar xvzf tkn_0.44.0_Linux_aarch64.tar.gz -C /usr/local/bin/ tkn ``` -- [Linux IBM Z](https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_s390x.tar.gz) +- [Linux IBM Z](https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_s390x.tar.gz) ```shell # Get the tar.gz - curl -LO https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_s390x.tar.gz + curl -LO https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_s390x.tar.gz # Extract tkn to your PATH (e.g. /usr/local/bin) - sudo tar xvzf tkn_0.43.0_Linux_s390x.tar.gz -C /usr/local/bin/ tkn + sudo tar xvzf tkn_0.44.0_Linux_s390x.tar.gz -C /usr/local/bin/ tkn ``` -- [Linux IBM P](https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_ppc64le.tar.gz) +- [Linux IBM P](https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_ppc64le.tar.gz) ```shell # Get the tar.gz - curl -LO https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Linux_ppc64le.tar.gz + curl -LO https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Linux_ppc64le.tar.gz # Extract tkn to your PATH (e.g. /usr/local/bin) - sudo tar xvzf tkn_0.43.0_Linux_ppc64le.tar.gz -C /usr/local/bin/ tkn + sudo tar xvzf tkn_0.44.0_Linux_ppc64le.tar.gz -C /usr/local/bin/ tkn ``` ### Linux RPMs @@ -112,12 +112,12 @@ dnf copr enable chmouel/tektoncd-cli dnf install tektoncd-cli ``` -- [Binary RPM package](https://github.com/tektoncd/cli/releases/download/v0.43.0/tektoncd-cli-0.43.0_Linux-64bit.rpm) +- [Binary RPM package](https://github.com/tektoncd/cli/releases/download/v0.44.0/tektoncd-cli-0.44.0_Linux-64bit.rpm) On any other RPM based distros, you can install the rpm directly: ```shell - rpm -Uvh https://github.com/tektoncd/cli/releases/download/v0.43.0/tektoncd-cli-0.43.0_Linux-64bit.rpm + rpm -Uvh https://github.com/tektoncd/cli/releases/download/v0.44.0/tektoncd-cli-0.44.0_Linux-64bit.rpm ``` ### Linux Debs @@ -135,13 +135,13 @@ sudo apt update && sudo apt install -y tektoncd-cli The PPA may work with older releases, but that hasn't been tested. -- [Binary DEB package](https://github.com/tektoncd/cli/releases/download/v0.43.0/tektoncd-cli-0.43.0_Linux-64bit.deb) +- [Binary DEB package](https://github.com/tektoncd/cli/releases/download/v0.44.0/tektoncd-cli-0.44.0_Linux-64bit.deb) On any other Debian or Ubuntu based distro, you can simply install the binary package directly with `dpkg`: ```shell -curl -LO https://github.com/tektoncd/cli/releases/download/v0.43.0/tektoncd-cli-0.43.0_Linux-64bit.deb -dpkg -i tektoncd-cli-0.43.0_Linux-64bit.deb +curl -LO https://github.com/tektoncd/cli/releases/download/v0.44.0/tektoncd-cli-0.44.0_Linux-64bit.deb +dpkg -i tektoncd-cli-0.44.0_Linux-64bit.deb ``` ### NixOS/Nix diff --git a/choco/README.md b/choco/README.md index db329ac40c..5bad0b7139 100644 --- a/choco/README.md +++ b/choco/README.md @@ -32,6 +32,6 @@ To update this package to a newer version of `tkn`, the following updates should - Edit the version property in [tektoncd-cli.nuspec](./tektoncd-cli.nuspec#L5) to the latest available version of `tkn`. - Change the [version in the download url for the Windows `tkn` zip](./tools/chocolateyinstall.ps1#L4) to the latest available version of `tkn`. -- Update the [checksum for the package](./tools/chocolateyinstall.ps1#L11) by getting the sha256 of the zip file. Example: `Get-FileHash '.\tkn_0.43.0_Windows_x86_64.zip'`. The zip can be downloaded using the release download url from GitHub; just remember to change the version numbers in the url: https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Windows_x86_64.zip. +- Update the [checksum for the package](./tools/chocolateyinstall.ps1#L11) by getting the sha256 of the zip file. Example: `Get-FileHash '.\tkn_0.44.0_Windows_x86_64.zip'`. The zip can be downloaded using the release download url from GitHub; just remember to change the version numbers in the url: https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Windows_x86_64.zip. - Run `choco pack` in the `choco` directory to build the package - Run `choco push` to push the built package and make it available for download (NOTE: You will need permissions to push the package/to be authenticated. Reach out to [@danielhelfand](https://github.com/danielhelfand) for more details.) diff --git a/choco/tektoncd-cli.nuspec b/choco/tektoncd-cli.nuspec index 4aefb8ee33..586b4622ab 100644 --- a/choco/tektoncd-cli.nuspec +++ b/choco/tektoncd-cli.nuspec @@ -2,7 +2,7 @@ tektoncd-cli - 0.43.0 + 0.44.0 Tekton CLI (tkn) Tekton authors, see https://github.com/tektoncd/cli/graphs/contributors https://github.com/tektoncd/cli diff --git a/choco/tools/chocolateyinstall.ps1 b/choco/tools/chocolateyinstall.ps1 index 9384f8a267..2cbaae2e9f 100644 --- a/choco/tools/chocolateyinstall.ps1 +++ b/choco/tools/chocolateyinstall.ps1 @@ -1,14 +1,14 @@ $ErrorActionPreference = 'Stop'; $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $packageName = 'tektoncd-cli' -$url64 = 'https://github.com/tektoncd/cli/releases/download/v0.43.0/tkn_0.43.0_Windows_x86_64.zip' +$url64 = 'https://github.com/tektoncd/cli/releases/download/v0.44.0/tkn_0.44.0_Windows_x86_64.zip' $packageArgs = @{ packageName = $packageName unzipLocation = $toolsDir url64bit = $url64 softwareName = 'tektoncd-cli*' - checksum64 = 'c57dc0f0e97414a7482cb9a420d47eab85410903fabc072925edb09691f0aadc' + checksum64 = 'ad85940171d3c75b6161956b5080741d067398614405831cb0f9654667867c9e' checksumType64 = 'sha256' } diff --git a/releases.md b/releases.md index 6566b9bedb..5d287c5660 100644 --- a/releases.md +++ b/releases.md @@ -36,6 +36,13 @@ Further documentation available: ## Releases + +### v0.44 (LTS) + +- **Latest Release**: [v0.44.0][v0-44-0] (2026-02-23) ([docs][v0-44-0-docs]) +- **Initial Release**: [v0.44.0][v0-44-0] (2026-02-23) ([docs][v0-44-0-docs]) +- **End of Life**: 2027-02-22 + ### v0.43 (LTS) - **Latest Release**: [v0.43.0][v0-43-0] (2025-11-21) ([docs][v0-43-0-docs]) @@ -165,6 +172,7 @@ Older releases are EOL and available on [GitHub][tekton-cli-releases]. [tekton-releases-docs]: tekton/README.md [release-notes-standards]: https://github.com/tektoncd/community/blob/main/standards.md#release-notes [tekton-release-process]: RELEASE_PROCESS.md +[v0-44-0]: https://github.com/tektoncd/cli/releases/tag/v0.44.0 [v0-43-0]: https://github.com/tektoncd/cli/releases/tag/v0.43.0 [v0-42-0]: https://github.com/tektoncd/cli/releases/tag/v0.42.0 [v0-41-1]: https://github.com/tektoncd/cli/releases/tag/v0.41.1 @@ -194,6 +202,7 @@ Older releases are EOL and available on [GitHub][tekton-cli-releases]. [v0-27-0]: https://github.com/tektoncd/cli/releases/tag/v0.27.0 [v0-26-0]: https://github.com/tektoncd/cli/releases/tag/v0.26.0 [v0-25-0]: https://github.com/tektoncd/cli/releases/tag/v0.25.0 +[v0-44-0-docs]: https://github.com/tektoncd/cli/tree/v0.44.0/docs [v0-43-0-docs]: https://github.com/tektoncd/cli/tree/v0.43.0/docs [v0-42-0-docs]: https://github.com/tektoncd/cli/tree/v0.42.0/docs [v0-41-1-docs]: https://github.com/tektoncd/cli/tree/v0.41.1/docs