Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Mar 5, 2018
1 parent 6e835e4 commit b1ea334
Show file tree
Hide file tree
Showing 10 changed files with 89 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="2.0.0"></a>
# [2.0.0](https://github.com/smooth-code/jest-puppeteer/compare/v1.1.1...v2.0.0) (2018-03-05)


### Bug Fixes

* add missing await to README ([cb11763](https://github.com/smooth-code/jest-puppeteer/commit/cb11763))


### Features

* integrate server launch ([dbea571](https://github.com/smooth-code/jest-puppeteer/commit/dbea571))
* simplify expect usage ([e0fc3d1](https://github.com/smooth-code/jest-puppeteer/commit/e0fc3d1))


### BREAKING CHANGES

* `expectPage()` is replaced by `expect(page)`
* Puppeteer launch options are now specified under `launch` object




<a name="1.1.1"></a>
## [1.1.1](https://github.com/smooth-code/jest-puppeteer/compare/v1.1.0...v1.1.1) (2018-03-04)

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "1.1.1",
"version": "2.0.0",
"npmClient": "yarn",
"useWorkspaces": true
}
16 changes: 16 additions & 0 deletions packages/expect-puppeteer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="2.0.0"></a>
# [2.0.0](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/puppeteer-expect/compare/v1.1.1...v2.0.0) (2018-03-05)


### Features

* simplify expect usage ([e0fc3d1](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/puppeteer-expect/commit/e0fc3d1))


### BREAKING CHANGES

* `expectPage()` is replaced by `expect(page)`




<a name="1.1.1"></a>
## [1.1.1](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/puppeteer-expect/compare/v1.1.0...v1.1.1) (2018-03-04)

Expand Down
2 changes: 1 addition & 1 deletion packages/expect-puppeteer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "expect-puppeteer",
"description": "Assertion toolkit for Puppeteer.",
"version": "1.1.1",
"version": "2.0.0",
"main": "lib/index.js",
"repository": "https://github.com/smooth-code/jest-puppeteer/tree/master/packages/puppeteer-expect",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand Down
18 changes: 18 additions & 0 deletions packages/jest-environment-puppeteer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="2.0.0"></a>
# [2.0.0](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-environment-puppeteer/compare/v1.1.1...v2.0.0) (2018-03-05)


### Features

* integrate server launch ([dbea571](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-environment-puppeteer/commit/dbea571))
* simplify expect usage ([e0fc3d1](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-environment-puppeteer/commit/e0fc3d1))


### BREAKING CHANGES

* `expectPage()` is replaced by `expect(page)`
* Puppeteer launch options are now specified under `launch` object




<a name="1.1.1"></a>
## [1.1.1](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-environment-puppeteer/compare/v1.1.0...v1.1.1) (2018-03-04)

Expand Down
4 changes: 2 additions & 2 deletions packages/jest-environment-puppeteer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jest-environment-puppeteer",
"description": "Puppeteer environment for Jest.",
"version": "1.1.1",
"version": "2.0.0",
"main": "index.js",
"repository": "https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-environment-puppeteer",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand Down Expand Up @@ -29,7 +29,7 @@
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"spawnd": "^1.1.1",
"spawnd": "^2.0.0",
"wait-port": "^0.2.2"
}
}
8 changes: 8 additions & 0 deletions packages/jest-puppeteer-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="2.0.0"></a>
# [2.0.0](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-puppeteer-preset/compare/v1.1.1...v2.0.0) (2018-03-05)




**Note:** Version bump only for package jest-puppeteer-preset

<a name="1.1.1"></a>
## [1.1.1](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-puppeteer-preset/compare/v1.1.0...v1.1.1) (2018-03-04)

Expand Down
6 changes: 3 additions & 3 deletions packages/jest-puppeteer-preset/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jest-puppeteer-preset",
"description": "Run your tests using Jest & Puppeteer.",
"version": "1.1.1",
"version": "2.0.0",
"main": "lib/index.js",
"repository": "https://github.com/smooth-code/jest-puppeteer/tree/master/packages/jest-puppeteer-preset",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand All @@ -17,7 +17,7 @@
"puppeteer": "^1.0.0"
},
"dependencies": {
"expect-puppeteer": "^1.1.1",
"jest-environment-puppeteer": "^1.1.1"
"expect-puppeteer": "^2.0.0",
"jest-environment-puppeteer": "^2.0.0"
}
}
16 changes: 16 additions & 0 deletions packages/spawnd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="2.0.0"></a>
# [2.0.0](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/spawnd/compare/v1.1.1...v2.0.0) (2018-03-05)


### Features

* integrate server launch ([dbea571](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/spawnd/commit/dbea571))


### BREAKING CHANGES

* Puppeteer launch options are now specified under `launch` object




<a name="1.1.1"></a>
## [1.1.1](https://github.com/smooth-code/jest-puppeteer/tree/master/packages/spawnd/compare/v1.1.0...v1.1.1) (2018-03-04)

Expand Down
2 changes: 1 addition & 1 deletion packages/spawnd/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "spawnd",
"description": "Spawn a dependent child process.",
"version": "1.1.1",
"version": "2.0.0",
"main": "lib/index.js",
"repository": "https://github.com/smooth-code/jest-puppeteer/tree/master/packages/spawnd",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand Down

0 comments on commit b1ea334

Please sign in to comment.