diff --git a/flake.nix b/flake.nix index 4b3531f..e8269b7 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ packages = rec { superfile = pkgs.buildGoApplication { pname = "superfile"; - version = "1.1.7"; + version = "1.1.7.1"; src = ./.; modules = ./gomod2nix.toml; }; diff --git a/release/release.sh b/release/release.sh index 6404839..6ed0a41 100644 --- a/release/release.sh +++ b/release/release.sh @@ -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 diff --git a/src/config/fixed_variable.go b/src/config/fixed_variable.go index 45e763d..1bf1a7b 100644 --- a/src/config/fixed_variable.go +++ b/src/config/fixed_variable.go @@ -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" ) diff --git a/website/public/install.ps1 b/website/public/install.ps1 index 980df0e..52eb201 100644 --- a/website/public/install.ps1 +++ b/website/public/install.ps1 @@ -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. diff --git a/website/public/install.sh b/website/public/install.sh index 858989f..481ee0c 100755 --- a/website/public/install.sh +++ b/website/public/install.sh @@ -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) diff --git a/website/public/uninstall.ps1 b/website/public/uninstall.ps1 index 0f731dd..fe176bb 100644 --- a/website/public/uninstall.ps1 +++ b/website/public/uninstall.ps1 @@ -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. diff --git a/website/src/content/docs/changelog.md b/website/src/content/docs/changelog.md index b219d0a..9203c4c 100644 --- a/website/src/content/docs/changelog.md +++ b/website/src/content/docs/changelog.md @@ -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