Skip to content

Commit e3a2739

Browse files
author
Kenth Fagerlund
committed
chore(release): bump version to v0.0.2
1 parent 8c4bbcb commit e3a2739

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Formula/halpradio.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Halpradio < Formula
22
desc "LazyVim-inspired Terminal Internet Radio Streamer"
33
homepage "https://github.com/halpworld/halpradio"
4-
version "0.0.1"
4+
version "0.0.2"
55
license "MIT"
66

77
on_macos do

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ halpradio
5555
## 📺 Preview
5656

5757
```
58-
┌── 📻 HALPRADIO v0.0.1 ───────────────────────────────────────────────────────────── [ TOKYO NIGHT ] ┐
58+
┌── 📻 HALPRADIO v0.0.2 ───────────────────────────────────────────────────────────── [ TOKYO NIGHT ] ┐
5959
│ │
6060
│ [1] All Stations (128) [2] Favorites (12) [3] Categories [4] Online Search (30,000+) │
6161
│ ────────────────────────────────────────────────────────────────────────────────────────────────── │
@@ -119,8 +119,8 @@ Download pre-compiled standalone tarballs from the [GitHub Releases](https://git
119119
**Manual Installation Steps:**
120120
```bash
121121
# Example for macOS Apple Silicon:
122-
curl -LO https://github.com/halpworld/halpradio/releases/latest/download/halpradio_0.0.1_darwin_arm64.tar.gz
123-
tar -xzf halpradio_0.0.1_darwin_arm64.tar.gz
122+
curl -LO https://github.com/halpworld/halpradio/releases/latest/download/halpradio_0.0.2_darwin_arm64.tar.gz
123+
tar -xzf halpradio_0.0.2_darwin_arm64.tar.gz
124124
sudo mv halpradio /usr/local/bin/
125125
```
126126

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.1"
36+
VERSION="v0.0.2"
3737
fi
3838
fi
3939

pkg/app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/halpworld/halpradio/pkg/util"
1313
)
1414

15-
var Version = "0.0.1"
15+
var Version = "0.0.2"
1616

1717
func Run(embeddedCatalog []byte) {
1818
backendFlag := flag.String("backend", "auto", "Audio player backend: auto, native, mpv, vlc, ffplay, mplayer, mpg123")

0 commit comments

Comments
 (0)