Skip to content

Commit

Permalink
chore(version): upgrade version to v2.0.0-rc.53 (#142)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Cui <[email protected]>
  • Loading branch information
BlackHole1 authored Dec 18, 2024
1 parent 5ea373d commit d8145d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oomol-lab/ovm",
"version": "2.0.0-rc.52",
"version": "2.0.0-rc.53",
"description": "oomol virtual machine",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
10 changes: 5 additions & 5 deletions scripts/resource.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@
"darwin-arm64": [
{
"name": "ovm",
"version": "v1.0.0-RC5",
"version": "v1.0.0-RC6",
"download": "https://static.oomol.com/ovm-resources/Bauklotze/{version}/ovm-arm64",
"sha256": "3781f92470de67c94f8d3e49e0a8785f3fbeec6442177343f38aed10d73c901d",
"sha256": "8b658e81dc7ec73a6f45dd33a397db01758ea70d7f8687fd600aaba536a39137",
"out": "bin/ovm"
},
{
"name": "bootable",
"version": "v0.0.1",
"download": "https://static.oomol.com/ovm-resources/Bauklotze/{version}/bootable.img.xz",
"sha256": "20fb0fbbd507a83c106c693955267667fc4f0d55e20d18c6ab7a11e941600546",
"out": "bootable.img.xz"
"download": "https://static.oomol.com/ovm-resources/Bauklotze/{version}/bootable.img.zst",
"sha256": "e62707e62ba71cd1f74e0fe784f23b9859711211da6d250b492b3d307601b210",
"out": "bootable.img.zst"
},
{
"name": "libexec",
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const resourceArm64 = (name: "ovm" | "image", resource: OVMDarwinArm64Opt
return join(path, "bin", "ovm");
}
case "image": {
return join(path, "bootable.img.xz");
return join(path, "bootable.img.zst");
}
}
};
Expand Down

0 comments on commit d8145d2

Please sign in to comment.