automate-release 2.1.1 → 2.1.3

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/bin/init.js +1 -1
  2. package/package.json +2 -2
package/bin/init.js CHANGED
@@ -114,7 +114,7 @@ module.exports = async ({ cwd } = {}) => {
114
114
  console.log(
115
115
  gray(
116
116
  ` or write them in .envrc file and run ${highlight(
117
- 'automate-release ---tokens'
117
+ 'automate-release --tokens'
118
118
  )}`
119
119
  )
120
120
  )
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "automate-release",
3
3
  "description": "No more manual work in your software releases.",
4
4
  "homepage": "https://github.com/kikobeats/automate-release",
5
- "version": "2.1.1",
5
+ "version": "2.1.3",
6
6
  "main": "index.js",
7
7
  "bin": {
8
8
  "automate-release": "bin/index.js"
@@ -76,7 +76,7 @@
76
76
  "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
77
77
  "pretest": "npm run lint",
78
78
  "release": "pnpm run release:version && pnpm run release:changelog && pnpm run release:commit && pnpm run release:tag",
79
- "release:changelog": "conventional-changelog -i CHANGELOG.md",
79
+ "release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
80
80
  "release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
81
81
  "release:github": "github-generate-release",
82
82
  "release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",