cherrypick-interactive 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -368,7 +368,7 @@ async function main() {
368
368
  await setPkgVersion(argv['version-file'], computedNextVersion)
369
369
  await git.add([argv['version-file']])
370
370
  const msg = argv['version-commit-message'].replace('{{version}}', computedNextVersion)
371
- await git.commit(msg)
371
+ await git.raw(['commit', '--no-verify', '-m', msg]);
372
372
 
373
373
  log(chalk.green(`✓ package.json updated and committed: ${msg}`))
374
374
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cherrypick-interactive",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Interactively cherry-pick commits that are in dev but not in main, using subject-based comparison.",
5
5
  "main": "cli.js",
6
6
  "bin": {