Skip to content

Commit

Permalink
Bump to v1.1.7
Browse files Browse the repository at this point in the history
kachick committed Nov 26, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent b299f68 commit 6955f98
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-bump-flake-lock-and-selfup.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:
required: false
type: string
version:
default: 'v1.1.6'
default: 'v1.1.7'
required: false
type: string
pr-body:
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -10,23 +10,23 @@ Replace strings if the line contains the definition of how to update itself.
In [Nix](https://nixos.org/) [Flake](https://nixos.wiki/wiki/Flakes), you can skip installation steps

```console
> nix run github:kachick/selfup/v1.1.6 -- --version
> nix run github:kachick/selfup/v1.1.7 -- --version
selfup dev (rev)
```

Prebuilt binaries are available for download from [releases](https://github.com/kachick/selfup/releases)

```console
> install_path="$(mktemp -d)"
> curl -L https://github.com/kachick/selfup/releases/download/v1.1.6/selfup_Linux_x86_64.tar.gz | tar xvz -C "$install_path" selfup
> curl -L https://github.com/kachick/selfup/releases/download/v1.1.7/selfup_Linux_x86_64.tar.gz | tar xvz -C "$install_path" selfup
> "${install_path}/selfup" --version
selfup VERSION (REV)
```

You can also use [gh](https://github.com/cli/cli) command.

```bash
gh release download 'v1.1.6' --pattern 'selfup_Linux_x86_64.tar.gz' --repo kachick/selfup
gh release download 'v1.1.7' --pattern 'selfup_Linux_x86_64.tar.gz' --repo kachick/selfup
tar -xvzf 'selfup_Linux_x86_64.tar.gz'
```

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@
system:
let
pkgs = nixpkgs.legacyPackages.${system};
version = "v1.1.6";
version = "v1.1.7";
in
rec {
selfup = pkgs.buildGo123Module {

0 comments on commit 6955f98

Please sign in to comment.