docs: update semantic-release and travis-deploy-once versions in examples

This commit is contained in:
Pierre Vanduynslager
2018-07-02 11:23:37 -04:00
parent d4f68a5680
commit 3602716c0b
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins
```json ```json
{ {
"devDependencies": { "devDependencies": {
"semantic-release": "^12.0.0" "semantic-release": "^15.0.0"
} }
} }
``` ```
+1 -1
View File
@@ -51,7 +51,7 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins
```json ```json
{ {
"devDependencies": { "devDependencies": {
"semantic-release": "^12.0.0" "semantic-release": "^15.0.0"
} }
} }
``` ```
+1 -1
View File
@@ -48,7 +48,7 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins
```json ```json
{ {
"devDependencies": { "devDependencies": {
"semantic-release": "^12.0.0" "semantic-release": "^15.0.0"
} }
} }
``` ```
+2 -2
View File
@@ -83,8 +83,8 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins
```json ```json
{ {
"devDependencies": { "devDependencies": {
"semantic-release": "^12.0.0", "semantic-release": "^15.0.0",
"travis-deploy-once": "^4.0.0" "travis-deploy-once": "^5.0.0"
} }
} }
``` ```
+2 -2
View File
@@ -24,6 +24,6 @@ For other type of projects we recommend installing **semantic-release** directly
$ npx semantic-release $ npx semantic-release
``` ```
**Note:** For a global installation, it's recommended to specify the major **semantic-release** version to install (for example with with `npx semantic-release@12`, or `npm install -g semantic-release@12`). This way your build will not automatically use the next major **semantic-release** release that could possibly break your build. You will have to upgrade manually when a new major version is released. **Note:** For a global installation, it's recommended to specify the major **semantic-release** version to install (for example with with `npx semantic-release@15`, or `npm install -g semantic-release@15`). This way your build will not automatically use the next major **semantic-release** release that could possibly break your build. You will have to upgrade manually when a new major version is released.
**Note:** `npx` is a tool bundled with `npm@>=5.2.0`. It is used to conveniently install the semantic-release binary and to execute it. See [What is npx](../support/FAQ.md#what-is-npx) for more details. **Note:** `npx` is a tool bundled with `npm@>=5.2.0`. It is used to conveniently install the semantic-release binary and to execute it. See [What is npx](../support/FAQ.md#what-is-npx) for more details.