Skip to content

Commit 4109451

Browse files
committed
chore: Release 1.3.3
1 parent 29dc4d0 commit 4109451

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
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.3.2";
30+
version = "1.3.3";
3131
src = ./.;
3232
modules = ./gomod2nix.toml;
3333
nativeCheckInputs = [ pkgs.writableTmpDirAsHomeHook ];

release/release.sh

Lines changed: 2 additions & 3 deletions
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.3.2"
4+
version="v1.3.3"
55
osList=("darwin" "linux" "windows")
66
archList=("amd64" "arm64")
77
mkdir dist
@@ -26,5 +26,4 @@ for os in "${osList[@]}"; do
2626
tar czf "./dist/$projectName-$os-$version-$arch.tar.gz" "./dist/$projectName-$os-$version-$arch"
2727
done
2828
fi
29-
done
30-
w
29+
done

src/config/fixed_variable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
const (
14-
CurrentVersion = "v1.3.2"
14+
CurrentVersion = "v1.3.3"
1515
LatestVersionURL = "https://api.github.com/repos/yorukot/superfile/releases/latest"
1616
LatestVersionGithub = "github.com/yorukot/superfile/releases/latest"
1717

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 = if ($env:SPF_INSTALL_VERSION) { $env:SPF_INSTALL_VERSION } else { "1.3.2" }
25+
$version = if ($env:SPF_INSTALL_VERSION) { $env:SPF_INSTALL_VERSION } else { "1.3.3" }
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=${SPF_INSTALL_VERSION:-1.3.2}
42+
version=${SPF_INSTALL_VERSION:-1.3.3}
4343
arch=$(uname -m)
4444
os=$(uname -s)
4545

website/src/content/docs/changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@ 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.3.3**](https://github.com/yorukot/superfile/releases/tag/v1.3.3)
14+
15+
> 2025-07-22
16+
17+
#### Update
18+
- feat: Metadata loading via bubbletea's tea.Cmd method, removed usage channels and custom goroutines by [`#947`](https://github.com/yorukot/superfile/pull/947)
19+
20+
#### Bug Fix
21+
- fix: windows test ci by [`#941`](https://github.com/yorukot/superfile/pull/941)
22+
- fix: fixing `config.toml` by [`#952`](https://github.com/yorukot/superfile/pull/952)
23+
24+
#### Misc
25+
- chore: update pnpm-lcok.yaml by [`#937`](https://github.com/yorukot/superfile/pull/937)
26+
27+
1328
# [**v1.3.2**](https://github.com/yorukot/superfile/releases/tag/v1.3.2)
1429

1530
> 2025-07-16

0 commit comments

Comments
 (0)