diff --git a/PKGBUILD b/PKGBUILD index 6a9d59e..7c15d91 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=vcom -pkgver=0.1.0 +pkgver=0.1.5 pkgrel=1 pkgdesc="Terminal file manager inspired by Midnight Commander" arch=("x86_64" "aarch64") diff --git a/README.md b/README.md index 256a739..a8e9e86 100644 --- a/README.md +++ b/README.md @@ -64,21 +64,21 @@ go build -o vcom ./cmd/vcom Run directly from the flake: ```bash -nix run github:vrubelroman/vcom?ref=v0.1.4 +nix run github:vrubelroman/vcom?ref=v0.1.5 ``` Install into user profile: ```bash -nix profile add github:vrubelroman/vcom?ref=v0.1.4 +nix profile add github:vrubelroman/vcom?ref=v0.1.5 ``` ### Debian / Ubuntu -Download the release `.deb` for `v0.1.4`, then install: +Download the release `.deb` for `v0.1.5`, then install: ```bash -sudo apt install ./vcom_0.1.4_amd64.deb +sudo apt install ./vcom_0.1.5_amd64.deb ``` Install a Nerd Font (example): @@ -130,7 +130,7 @@ Built-in themes: ## Releases -Pushing a tag like `v0.1.4` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which: +Pushing a tag like `v0.1.5` triggers GitHub Actions release workflow (`.github/workflows/release.yml`) which: - runs tests - vendors Go modules @@ -140,9 +140,9 @@ Pushing a tag like `v0.1.4` triggers GitHub Actions release workflow (`.github/w Release artifacts: -- `vcom-v0.1.4-x86_64-unknown-linux-gnu.tar.gz` -- `vcom_0.1.4_amd64.deb` -- `vcom-v0.1.4-checksums.txt` +- `vcom-v0.1.5-x86_64-unknown-linux-gnu.tar.gz` +- `vcom_0.1.5_amd64.deb` +- `vcom-v0.1.5-checksums.txt` ## Notes diff --git a/flake.nix b/flake.nix index 5c38d98..1887443 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ lib = pkgs.lib; packageBase = pkgs.buildGoModule { pname = "vcom"; - version = "0.1.4"; + version = "0.1.5"; src = ./.; vendorHash = null;