Skip to content

Commit 8eec074

Browse files
author
Kenth Fagerlund
committed
chore(release): bump version to v0.1.0
1 parent 04c8260 commit 8eec074

6 files changed

Lines changed: 13 additions & 13 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.7"
7+
version "0.1.0"
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.7/halpradio_0.0.7_darwin_arm64.tar.gz"
12+
url "https://github.com/halpworld/halpradio/releases/download/v0.1.0/halpradio_0.1.0_darwin_arm64.tar.gz"
1313
else
14-
url "https://github.com/halpworld/halpradio/releases/download/v0.0.7/halpradio_0.0.7_darwin_amd64.tar.gz"
14+
url "https://github.com/halpworld/halpradio/releases/download/v0.1.0/halpradio_0.1.0_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.7/halpradio_0.0.7_linux_arm64.tar.gz"
20+
url "https://github.com/halpworld/halpradio/releases/download/v0.1.0/halpradio_0.1.0_linux_arm64.tar.gz"
2121
else
22-
url "https://github.com/halpworld/halpradio/releases/download/v0.0.7/halpradio_0.0.7_linux_amd64.tar.gz"
22+
url "https://github.com/halpworld/halpradio/releases/download/v0.1.0/halpradio_0.1.0_linux_amd64.tar.gz"
2323
end
2424
end
2525

SECURITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ We actively provide security patches and updates for the following versions of *
66

77
| Version | Supported |
88
| ------- | ------------------ |
9+
| 0.1.x | :white_check_mark: |
910
| 0.0.x | :white_check_mark: |
1011
| < 0.0.1 | :x: |
1112

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.7
29+
pkgver=0.1.0
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.7",
91+
"version": "0.1.0",
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.7/halpradio_0.0.7_windows_amd64.zip",
97+
"url": "https://github.com/halpworld/halpradio/releases/download/v0.1.0/halpradio_0.1.0_windows_amd64.zip",
9898
"bin": "halpradio.exe"
9999
},
100100
"arm64": {
101-
"url": "https://github.com/halpworld/halpradio/releases/download/v0.0.7/halpradio_0.0.7_windows_arm64.zip",
101+
"url": "https://github.com/halpworld/halpradio/releases/download/v0.1.0/halpradio_0.1.0_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.7";
117+
version = "0.1.0";
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.7"
36+
VERSION="v0.1.0"
3737
fi
3838
fi
3939

pkg/app/app.go

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

23-
var Version = "0.0.7"
23+
var Version = "0.1.0"
2424

2525
type AppInstance struct {
2626
Program *tea.Program

pkg/theme/theme_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,4 +372,3 @@ func TestExportThemePathTraversal(t *testing.T) {
372372
t.Errorf("Exported path escaped destination directory: %s (rel: %s)", exportedPath, rel)
373373
}
374374
}
375-

0 commit comments

Comments
 (0)