From 6847ca04df4eecfc413bb75807b0146ba0d157a5 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Mon, 21 May 2018 23:18:45 +0900 Subject: [PATCH] fix(docs): Remove mention of pre 1.0.0 version (#3010) --- docs/about/01-versioning.md | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/docs/about/01-versioning.md b/docs/about/01-versioning.md index b5b326628..7c5ce6802 100644 --- a/docs/about/01-versioning.md +++ b/docs/about/01-versioning.md @@ -1,20 +1,12 @@ -Karma uses [Semantic Versioning]. There are some special rules at the moment, -as we have not yet released a `1.0.0`. +Karma uses [Semantic Versioning]. -* Minor versions could introduce breaking changes. -* Patch versions are expected to be compatible at all times. +It is recommended that you add Karma by running: -It is recommended that you add the following entry to your `package.json` -file, either manually -```javascript -{ - "devDependencies": { - "karma": "^0.13.0" - } -} +```bash +$ yarn add --dev karma ``` -or by running +or: ```bash $ npm --save-dev install karma