Skip to content

Commit

Permalink
chore(release): v1.1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yorukot committed Jan 6, 2025
1 parent 30adc0c commit 820140a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
packages = rec {
superfile = pkgs.buildGoApplication {
pname = "superfile";
version = "1.1.7";
version = "1.1.7.1";
src = ./.;
modules = ./gomod2nix.toml;
};
Expand Down
2 changes: 1 addition & 1 deletion release/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S bash -euo pipefail

projectName="superfile"
version="v1.1.7"
version="v1.1.7.1"
osList=("darwin" "linux" "windows")
archList=("amd64" "arm64")
mkdir dist
Expand Down
2 changes: 1 addition & 1 deletion src/config/fixed_variable.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
var SuperFileStateDir = xdg.StateHome + "/superfile"

const (
CurrentVersion string = "v1.1.7"
CurrentVersion string = "v1.1.7.1"
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
)
Expand Down
2 changes: 1 addition & 1 deletion website/public/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""

$package = "superfile"
$version = "1.1.7"
$version = "1.1.7.1"

$installInstructions = @'
This installer is only available for Windows.
Expand Down
2 changes: 1 addition & 1 deletion website/public/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
fi

package=superfile
version=1.1.7
version=1.1.7.1
arch=$(uname -m)
os=$(uname -s)

Expand Down
2 changes: 1 addition & 1 deletion website/public/uninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""

$package = "superfile"
$version = "1.1.7"
$version = "1.1.7.1"

$installInstructions = @'
This uninstaller is only available for Windows.
Expand Down
9 changes: 9 additions & 0 deletions website/src/content/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ head:

All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).

# [**v1.1.7.1**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)

> 2024-01-06
NOTE: This release is a hotfix to resolve an unusual issue on Windows.

#### Bug fix
- Fix can't run on windows [`#534`](https://github.com/yorukot/superfile/issues/534)

# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)

> 2024-01-05
Expand Down

0 comments on commit 820140a

Please sign in to comment.