Skip to content

Commit

Permalink
feat: update sqlite to version 3.48.0 and adjust download URL (#205)
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémy Audiger <[email protected]>
  • Loading branch information
jaudiger authored Jan 22, 2025
1 parent 1076be7 commit 5cafe85
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/sqlite/brioche.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/sqlite/project.bri
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import * as std from "std";

export const project = {
name: "sqlite",
version: "3.46.1",
version: "3.48.0",
extra: {
// The version number as encoded in SQLite build product names
filenameEncodedVersion: "3460100",
filenameEncodedVersion: "3480000",
},
};

Expand All @@ -20,7 +20,7 @@ std.assert(
);

const source = Brioche.download(
`https://www.sqlite.org/2024/sqlite-autoconf-${project.extra.filenameEncodedVersion}.tar.gz`,
`https://www.sqlite.org/2025/sqlite-autoconf-${project.extra.filenameEncodedVersion}.tar.gz`,
)
.unarchive("tar", "gzip")
.peel();
Expand Down

0 comments on commit 5cafe85

Please sign in to comment.