From 78ae55d5698daf645f32236a19af348504b69714 Mon Sep 17 00:00:00 2001 From: Daniel Cook Date: Tue, 30 Jul 2019 18:56:00 +0100 Subject: [PATCH 1/2] 1.2.0 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1d7538cf..7cabca55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@testing-library/vue", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e3c02d48..ba74787a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@testing-library/vue", - "version": "1.1.0", + "version": "1.2.0", "description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.", "main": "dist/vue-testing-library.js", "scripts": { From 6c3a706df2f69b1b054c79c4276dbb19c9bf4b4d Mon Sep 17 00:00:00 2001 From: Daniel Cook Date: Wed, 31 Jul 2019 07:47:49 +0100 Subject: [PATCH 2/2] #51 - update travis yaml for codecov --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0ad2a144..e96d6fbf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,14 @@ cache: - ~/.npm notifications: email: false -node_js: '8' +node_js: + - '8' + - '10' + - '12' install: yarn -script: yarn test -after_success: yarn coveralls +script: + - yarn test + - yarn global add codecov +after_success: codecov branches: -only: master \ No newline at end of file + only: master \ No newline at end of file