Skip to content

Commit

Permalink
Update kuzu dependency version in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Mar 25, 2024
1 parent 40f2dff commit a49b700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/UpdateDevVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const CMD = "npm view kuzu@next version";
process.exit(1);
}
const packageJson = JSON.parse(data);
packageJson.dependencies.kuzu = `^${latestVersion}`;
packageJson.dependencies.kuzu = `${latestVersion}`;
fs.writeFile(
PACKAGE_JSON_PATH,
JSON.stringify(packageJson, null, 2),
Expand Down

0 comments on commit a49b700

Please sign in to comment.