From a468e33e82ef5f5cf37afaeae972bc410f218583 Mon Sep 17 00:00:00 2001 From: vrubelroman Date: Wed, 13 May 2026 13:40:09 +0300 Subject: [PATCH] chore: bump version to v0.2.5 --- PKGBUILD | 2 +- README.md | 12 ++++++------ flake.nix | 2 +- internal/ui/model.go | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 37c3ecc..6f7b0b4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=vcom -pkgver=0.2.4 +pkgver=0.2.5 pkgrel=1 pkgdesc="Terminal file manager inspired by Midnight Commander" arch=("x86_64" "aarch64") diff --git a/README.md b/README.md index 0a37d2e..13f496a 100644 --- a/README.md +++ b/README.md @@ -36,13 +36,13 @@ go build -o vcom ./cmd/vcom Run directly from the flake: ```bash -nix run github:vrubelroman/vcom?ref=v0.2.4 +nix run github:vrubelroman/vcom?ref=v0.2.5 ``` Install into user profile: ```bash -nix profile add github:vrubelroman/vcom?ref=v0.2.4 +nix profile add github:vrubelroman/vcom?ref=v0.2.5 ``` The Nix package wraps `vcom` with `ueberzugpp` in `PATH`, so image preview works in non-`kitty` terminals out of the box. @@ -52,7 +52,7 @@ The Nix package wraps `vcom` with `ueberzugpp` in `PATH`, so image preview works Download and install the latest release: ```bash -curl -sL https://github.com/vrubelroman/vcom/releases/download/v0.2.4/vcom_0.2.4_amd64.deb -o /tmp/vcom_0.2.4_amd64.deb +curl -sL https://github.com/vrubelroman/vcom/releases/download/v0.2.5/vcom_0.2.4_amd64.deb -o /tmp/vcom_0.2.4_amd64.deb sudo apt install /tmp/vcom_0.2.4_amd64.deb ``` @@ -183,7 +183,7 @@ Built-in themes (press `t` to open theme selector or set `ui.theme` in config): ## Releases -Pushing a tag like `v0.2.4` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which: +Pushing a tag like `v0.2.5` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which: - runs tests - vendors Go modules @@ -193,9 +193,9 @@ Pushing a tag like `v0.2.4` triggers GitHub Actions release workflow (`.github/w Release artifacts: -- `vcom-v0.2.4-x86_64-unknown-linux-gnu.tar.gz` +- `vcom-v0.2.5-x86_64-unknown-linux-gnu.tar.gz` - `vcom_0.2.4_amd64.deb` -- `vcom-v0.2.4-checksums.txt` +- `vcom-v0.2.5-checksums.txt` ## Notes diff --git a/flake.nix b/flake.nix index 11c0acd..e72c3df 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ lib = pkgs.lib; packageBase = pkgs.buildGoModule { pname = "vcom"; - version = "0.2.4"; + version = "0.2.5"; src = ./.; vendorHash = null; diff --git a/internal/ui/model.go b/internal/ui/model.go index 4dc9ffc..c2bb2d2 100644 --- a/internal/ui/model.go +++ b/internal/ui/model.go @@ -27,7 +27,7 @@ import ( "vcom/internal/theme" ) -const version = "v0.2.4" +const version = "v0.2.5" type modalKind int