Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 698 Bytes

01-versioning.md

File metadata and controls

24 lines (20 loc) · 698 Bytes

Karma uses Semantic Versioning with a little exception:

  • even versions (eg. 0.6.x, 0.8.x) are considered stable - no breaking changes or new features, only bug fixes will be pushed into this branch
  • odd versions (eg. 0.7.x, 0.9.x) are unstable - anything can happen ;-)

Therefore, it is recommended that you rely on the latest stable (even) version, which will give you automatic bug fixes, but will not break your test setup:

{
  "devDependencies": {
    "karma": "~0.10"
  }
}

Stable channel (branch stable)

$ npm install karma

Canary channel (branch master)

$ npm install karma@canary