Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): Remove mention of pre 1.0.0 version #3010

Merged
merged 1 commit into from
May 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 5 additions & 13 deletions docs/about/01-versioning.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down