Skip to content

Commit 820140a

Browse files
committed
chore(release): v1.1.7.1
1 parent 30adc0c commit 820140a

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
packages = rec {
2828
superfile = pkgs.buildGoApplication {
2929
pname = "superfile";
30-
version = "1.1.7";
30+
version = "1.1.7.1";
3131
src = ./.;
3232
modules = ./gomod2nix.toml;
3333
};

release/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env -S bash -euo pipefail
22

33
projectName="superfile"
4-
version="v1.1.7"
4+
version="v1.1.7.1"
55
osList=("darwin" "linux" "windows")
66
archList=("amd64" "arm64")
77
mkdir dist

src/config/fixed_variable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
99
var SuperFileStateDir = xdg.StateHome + "/superfile"
1010

1111
const (
12-
CurrentVersion string = "v1.1.7"
12+
CurrentVersion string = "v1.1.7.1"
1313
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
1414
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
1515
)

website/public/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
2222
Write-Host ""
2323

2424
$package = "superfile"
25-
$version = "1.1.7"
25+
$version = "1.1.7.1"
2626

2727
$installInstructions = @'
2828
This installer is only available for Windows.

website/public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
3939
fi
4040

4141
package=superfile
42-
version=1.1.7
42+
version=1.1.7.1
4343
arch=$(uname -m)
4444
os=$(uname -s)
4545

website/public/uninstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
2222
Write-Host ""
2323

2424
$package = "superfile"
25-
$version = "1.1.7"
25+
$version = "1.1.7.1"
2626

2727
$installInstructions = @'
2828
This uninstaller is only available for Windows.

website/src/content/docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ head:
1010

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

13+
# [**v1.1.7.1**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
14+
15+
> 2024-01-06
16+
17+
NOTE: This release is a hotfix to resolve an unusual issue on Windows.
18+
19+
#### Bug fix
20+
- Fix can't run on windows [`#534`](https://github.com/yorukot/superfile/issues/534)
21+
1322
# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
1423

1524
> 2024-01-05

0 commit comments

Comments
 (0)