diff --git a/docs/recipes/circleci-workflows.md b/docs/recipes/circleci-workflows.md index e127fe78..73bd5156 100644 --- a/docs/recipes/circleci-workflows.md +++ b/docs/recipes/circleci-workflows.md @@ -59,7 +59,7 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins ```json { "devDependencies": { - "semantic-release": "^12.0.0" + "semantic-release": "^15.0.0" } } ``` diff --git a/docs/recipes/gitlab-ci.md b/docs/recipes/gitlab-ci.md index da746c8e..6671ecef 100644 --- a/docs/recipes/gitlab-ci.md +++ b/docs/recipes/gitlab-ci.md @@ -51,7 +51,7 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins ```json { "devDependencies": { - "semantic-release": "^12.0.0" + "semantic-release": "^15.0.0" } } ``` diff --git a/docs/recipes/travis-build-stages.md b/docs/recipes/travis-build-stages.md index 6aff6605..b23d0b7d 100644 --- a/docs/recipes/travis-build-stages.md +++ b/docs/recipes/travis-build-stages.md @@ -48,7 +48,7 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins ```json { "devDependencies": { - "semantic-release": "^12.0.0" + "semantic-release": "^15.0.0" } } ``` diff --git a/docs/recipes/travis.md b/docs/recipes/travis.md index 0174f3ee..1b60fee4 100644 --- a/docs/recipes/travis.md +++ b/docs/recipes/travis.md @@ -83,8 +83,8 @@ A `package.json` is required only for [local](../usage/installation.md#local-ins ```json { "devDependencies": { - "semantic-release": "^12.0.0", - "travis-deploy-once": "^4.0.0" + "semantic-release": "^15.0.0", + "travis-deploy-once": "^5.0.0" } } ``` diff --git a/docs/usage/installation.md b/docs/usage/installation.md index 939c73d4..e51002e7 100644 --- a/docs/usage/installation.md +++ b/docs/usage/installation.md @@ -24,6 +24,6 @@ For other type of projects we recommend installing **semantic-release** directly $ 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. \ No newline at end of file +**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.