Skip to content

Commit 373f55c

Browse files
author
Kenth Fagerlund
committed
chore(release): bump version to v0.0.6
1 parent 8dde70e commit 373f55c

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

Formula/halpradio.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
class Halpradio < Formula
55
desc "LazyVim-inspired Terminal Internet Radio Streamer"
66
homepage "https://github.com/halpworld/halpradio"
7-
version "0.0.5"
7+
version "0.0.6"
88
license "GPL-3.0-or-later"
99

1010
on_macos do
1111
if Hardware::CPU.arm?
12-
url "https://github.com/halpworld/halpradio/releases/download/v0.0.5/halpradio_0.0.5_darwin_arm64.tar.gz"
12+
url "https://github.com/halpworld/halpradio/releases/download/v0.0.6/halpradio_0.0.6_darwin_arm64.tar.gz"
1313
else
14-
url "https://github.com/halpworld/halpradio/releases/download/v0.0.5/halpradio_0.0.5_darwin_amd64.tar.gz"
14+
url "https://github.com/halpworld/halpradio/releases/download/v0.0.6/halpradio_0.0.6_darwin_amd64.tar.gz"
1515
end
1616
end
1717

1818
on_linux do
1919
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
20-
url "https://github.com/halpworld/halpradio/releases/download/v0.0.5/halpradio_0.0.5_linux_arm64.tar.gz"
20+
url "https://github.com/halpworld/halpradio/releases/download/v0.0.6/halpradio_0.0.6_linux_arm64.tar.gz"
2121
else
22-
url "https://github.com/halpworld/halpradio/releases/download/v0.0.5/halpradio_0.0.5_linux_amd64.tar.gz"
22+
url "https://github.com/halpworld/halpradio/releases/download/v0.0.6/halpradio_0.0.6_linux_amd64.tar.gz"
2323
end
2424
end
2525

docs/PACKAGING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For Arch Linux users, the binary package can be built using the following `PKGBU
2626
```bash
2727
# Maintainer: halpworld <https://github.com/halpworld>
2828
pkgname=halpradio-bin
29-
pkgver=0.0.5
29+
pkgver=0.0.6
3030
pkgrel=1
3131
pkgdesc="LazyVim-inspired Terminal Internet Radio Streamer"
3232
arch=('x86_64' 'aarch64')
@@ -88,17 +88,17 @@ For Windows users using [Scoop](https://scoop.sh):
8888

8989
```json
9090
{
91-
"version": "0.0.5",
91+
"version": "0.0.6",
9292
"description": "LazyVim-inspired Terminal Internet Radio Streamer",
9393
"homepage": "https://github.com/halpworld/halpradio",
9494
"license": "GPL-3.0-or-later",
9595
"architecture": {
9696
"64bit": {
97-
"url": "https://github.com/halpworld/halpradio/releases/download/v0.0.5/halpradio_0.0.5_windows_amd64.zip",
97+
"url": "https://github.com/halpworld/halpradio/releases/download/v0.0.6/halpradio_0.0.6_windows_amd64.zip",
9898
"bin": "halpradio.exe"
9999
},
100100
"arm64": {
101-
"url": "https://github.com/halpworld/halpradio/releases/download/v0.0.5/halpradio_0.0.5_windows_arm64.zip",
101+
"url": "https://github.com/halpworld/halpradio/releases/download/v0.0.6/halpradio_0.0.6_windows_arm64.zip",
102102
"bin": "halpradio.exe"
103103
}
104104
}
@@ -114,7 +114,7 @@ For Windows users using [Scoop](https://scoop.sh):
114114
115115
buildGoModule rec {
116116
pname = "halpradio";
117-
version = "0.0.5";
117+
version = "0.0.6";
118118
119119
src = fetchFromGitHub {
120120
owner = "halpworld";

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if [ -z "${VERSION}" ]; then
3333
echo "🔍 Fetching latest halpradio release..."
3434
VERSION=$(curl -s "https://api.github.com/repos/${REPO}/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
3535
if [ -z "${VERSION}" ]; then
36-
VERSION="v0.0.5"
36+
VERSION="v0.0.6"
3737
fi
3838
fi
3939

pkg/app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/halpworld/halpradio/pkg/util"
1919
)
2020

21-
var Version = "0.0.5"
21+
var Version = "0.0.6"
2222

2323
type AppInstance struct {
2424
Program *tea.Program

0 commit comments

Comments
 (0)