Skip to content

Commit e52248e

Browse files
committed
update prebuilt sqinn v2.0.1
1 parent 6a4c33a commit e52248e

File tree

9 files changed

+21
-11
lines changed

9 files changed

+21
-11
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
go-version: ['1.22','1.23','1.24']
13+
go-version: ['1.23','1.24','1.25']
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Go ${{matrix.go-version}}
20-
uses: actions/setup-go@v4
20+
uses: actions/setup-go@v6
2121
with:
22+
cache: false
2223
go-version: ${{matrix.go-version}}
2324

2425
- name: Go version

.github/workflows/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
go-version: ['1.22','1.23','1.24']
13+
go-version: ['1.23','1.24','1.25']
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Go ${{matrix.go-version}}
20-
uses: actions/setup-go@v4
20+
uses: actions/setup-go@v6
2121
with:
22+
cache: false
2223
go-version: ${{matrix.go-version}}
2324

2425
- name: Go version

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ might occur. The PRAGMA busy_timeout might help to avoid SQLITE_BUSY errors.
181181
Changelog
182182
------------------------------------------------------------------------------
183183

184-
### v2.1.x-dev
184+
### v2.1.1
185185

186-
- include prebuilts for macos amd64/arm64
186+
- update prebuilt sqinn v2.0.1
187187

188188

189189
### v2.1.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/cvilsmeier/sqinn-go/v2
22

3-
go 1.22
3+
go 1.23 // support last 3 go versions

prebuilt/darwin-amd64.gz

5.91 KB
Binary file not shown.

prebuilt/darwin-arm64.gz

2.92 KB
Binary file not shown.

prebuilt/howto.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ HOWTO MAKE PREBUILT
22
--------------------------------------
33

44
Sqinn-go embeds prebuilt sqinn binaries for convenience.
5-
Currently it embeds linux_amd64 and windows_amd64.
5+
Currently it embeds sqinn for the following platforms:
6+
7+
- linux_amd64
8+
9+
- windows_amd64
10+
11+
- darwin_amd64
12+
13+
- darwin_arm64.
614

715
To update them, do this:
816

@@ -21,7 +29,7 @@ cat ~/Downloads/dist-darwin-arm64/sqinn | gzip > darwin-arm64.gz
2129
That's it.
2230

2331
Each prebuilt sqinn binary was built by a github runner supported by github.com.
24-
If you do not trust github.com (or whatever company owns github.com at the moment),
32+
If you do not trust Microsoft (or whoever owns github.com at the moment),
2533
you can always build sqinn yourself and use that.
2634

2735
Also, if you need sqinn for a platform that is not officially supported by github.com,

prebuilt/linux-amd64.gz

2.49 KB
Binary file not shown.

prebuilt/windows-amd64.gz

2.82 KB
Binary file not shown.

0 commit comments

Comments
 (0)