Skip to content

Commit fecf737

Browse files
committed
build: prepare for new major release
1 parent 557d2f1 commit fecf737

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ In a Meteor package, you need to add inside the `package.js` file the following
118118
```js
119119
[...]
120120
Package.onTest(function (api) {
121-
api.use(['lmieulet:meteor-legacy-coverage@0.4.0', 'lmieulet:meteor-coverage@4.3.0','meteortesting:[email protected]']);
121+
api.use(['lmieulet:meteor-legacy-coverage@1.0.0', 'lmieulet:meteor-coverage@5.0.0','meteortesting:[email protected]']);
122122
[...]
123123
});
124124
```

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 5.0.0
2+
- Full Meteor 3.0 compatibility. This is breaking. There is no backwards compatibility, due to:
3+
- Express has replaced connect as `WebApp` handlers.
4+
- Require .babelrc to instrument using istanbul
5+
- Update docs
6+
17
#### 3.2.0
28
- Handle Typescript Meteor projects
39

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meteor-coverage",
3-
"version": "4.3.0",
3+
"version": "5.0.0",
44
"description": "A meteor package that allows you to get the statement, line, function and branch coverage of Meteor project. This package uses the [istanbuljs](https://github.com/istanbuljs/istanbuljs) packages for coverage report. It's a debug only package, so it does not affect your production build.",
55
"main": "server/index.js",
66
"dependencies": {

0 commit comments

Comments
 (0)