semantic-release 17.0.3 → 17.0.4

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.
@@ -38,7 +38,7 @@ The following three examples are the same.
38
38
 
39
39
  - Via CLI argument:
40
40
  ```bash
41
- $ semantic-release --branch next
41
+ $ semantic-release --branches next
42
42
  ```
43
43
 
44
44
  **Note**: CLI arguments take precedence over options configured in the configuration file.
package/index.js CHANGED
@@ -66,7 +66,9 @@ async function run(context, plugins) {
66
66
  }
67
67
 
68
68
  logger[options.dryRun ? 'warn' : 'success'](
69
- `Run automated release from branch ${ciBranch}${options.dryRun ? ' in dry-run mode' : ''}`
69
+ `Run automated release from branch ${ciBranch} on repository ${options.repositoryUrl}${
70
+ options.dryRun ? ' in dry-run mode' : ''
71
+ }`
70
72
  );
71
73
 
72
74
  try {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "semantic-release",
3
3
  "description": "Automated semver compliant package publishing",
4
- "version": "17.0.3",
4
+ "version": "17.0.4",
5
5
  "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
6
6
  "ava": {
7
7
  "files": [
@@ -60,14 +60,14 @@
60
60
  "got": "^10.5.2",
61
61
  "js-yaml": "^3.10.0",
62
62
  "mockserver-client": "^5.1.1",
63
- "nock": "^11.1.0",
63
+ "nock": "^12.0.0",
64
64
  "nyc": "^15.0.0",
65
65
  "p-retry": "^4.0.0",
66
66
  "proxyquire": "^2.0.0",
67
67
  "sinon": "^8.0.4",
68
68
  "stream-buffers": "^3.0.2",
69
69
  "tempy": "^0.4.0",
70
- "xo": "^0.25.0"
70
+ "xo": "^0.26.0"
71
71
  },
72
72
  "engines": {
73
73
  "node": ">=10.18"