diff --git a/package.json b/package.json index 6e3b8534..c00f5c93 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "ComfyUI", "repository": "github:comfy-org/electron", "copyright": "Copyright © 2024 Comfy Org", - "version": "0.3.31", + "version": "0.3.32", "homepage": "https://comfy.org", "description": "The best modular GUI to run AI diffusion models.", "main": ".vite/build/main.js", diff --git a/scripts/releaseTypes.js b/scripts/releaseTypes.js index 0bd35fdb..0cde6213 100644 --- a/scripts/releaseTypes.js +++ b/scripts/releaseTypes.js @@ -18,7 +18,7 @@ try { const newVersion = packageJson.version // Commit the version bump - execSync(`git commit -am "Bump version ${newVersion}"`, { stdio: 'inherit' }) + execSync(`git commit -am "Bump version ${newVersion}" --no-verify`, { stdio: 'inherit' }) // Create the PR console.log('Creating PR...')