Skip to content

Commit

Permalink
Bump version to v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Apr 24, 2024
1 parent cff966f commit e03f3a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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
Expand Up @@ -79,7 +79,7 @@ jobs:
run: nix flake update --commit-lock-file
- name: Update related CI dependencies
run: |
git ls-files .github | xargs nix develop --command nix run github:kachick/selfup/v1.1.0 -- run
git ls-files .github | xargs nix develop --command nix run github:kachick/selfup/v1.1.1 -- run
git diff-index --quiet HEAD || git commit -m '${{ inputs.selfup-commit-message }}' .github
- name: Run optional step if given
if: inputs.optional-run != ''
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ 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.0 -- --version
> nix run github:kachick/selfup/v1.1.1 -- --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.0/selfup_Linux_x86_64.tar.gz | tar xvz -C "$install_path" selfup
> curl -L https://github.com/kachick/selfup/releases/download/v1.1.1/selfup_Linux_x86_64.tar.gz | tar xvz -C "$install_path" selfup
> "${install_path}/selfup" --version
selfup 1.0.0 (REV)
```
Expand Down

0 comments on commit e03f3a0

Please sign in to comment.