Skip to content

Commit 91dc053

Browse files
author
Guillaume Chau
committed
Version bump
1 parent 8dcdb92 commit 91dc053

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Apollo and GraphQL for Vue.js
22

3-
[![npm](https://img.shields.io/badge/v-next-blue.svg) ![npm](https://img.shields.io/npm/dm/vue-apollo.svg)](https://www.npmjs.com/package/vue-apollo)
3+
[![npm](https://img.shields.io/npm/v/npm/next.svg) ![npm](https://img.shields.io/npm/dm/vue-apollo.svg)](https://www.npmjs.com/package/vue-apollo)
44
[![vue1](https://img.shields.io/badge/apollo-2.x-blue.svg)](http://apollodata.com/)
55
[![vue1](https://img.shields.io/badge/vue-1.x-brightgreen.svg) ![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)
66

77
![schema](https://cdn-images-1.medium.com/max/800/1*H9AANoofLqjS10Xd5TwRYw.png)
88

9-
**Warning! This README is related to the next version of vue-apollo. For the stable release, see [here](https://github.com/Akryum/vue-apollo/tree/master).**
9+
**Warning! This README is related to the next version of vue-apollo (that supports Apollo 2.x). For the old release (supporting only Apollo 1.x), see [here](https://github.com/Akryum/vue-apollo/tree/master).**
1010

1111
Integrates [apollo](http://www.apollodata.com/) in your [Vue](http://vuejs.org) components with declarative queries. Compatible with Vue 1.0+ and 2.0+. [Live demo](https://jsfiddle.net/Akryum/oyejk2qL/)
1212

dist/vue-apollo.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3652,7 +3652,7 @@ function install(Vue, options) {
36523652
ApolloProvider$1.install = install;
36533653

36543654
// eslint-disable-next-line no-undef
3655-
ApolloProvider$1.version = "3.0.0-alpha.2";
3655+
ApolloProvider$1.version = "3.0.0-alpha.3";
36563656

36573657
var ApolloProvider$$1 = ApolloProvider$1;
36583658

dist/vue-apollo.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-apollo.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3658,7 +3658,7 @@ function install(Vue, options) {
36583658
ApolloProvider$1.install = install;
36593659

36603660
// eslint-disable-next-line no-undef
3661-
ApolloProvider$1.version = "3.0.0-alpha.2";
3661+
ApolloProvider$1.version = "3.0.0-alpha.3";
36623662

36633663
var ApolloProvider$$1 = ApolloProvider$1;
36643664

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-apollo",
3-
"version": "3.0.0-alpha.2",
3+
"version": "3.0.0-alpha.3",
44
"description": "Vue apollo integration",
55
"main": "dist/vue-apollo.umd.js",
66
"module": "dist/vue-apollo.esm.js",
@@ -11,8 +11,9 @@
1111
"build:browser": "rollup --config build/rollup.config.browser.js",
1212
"build:es": "rollup --config build/rollup.config.es.js",
1313
"build:umd": "rollup --config build/rollup.config.umd.js",
14-
"prepublish": "npm run build",
14+
"prepublishOnly": "npm run test && npm run build",
1515
"dev": "npm-watch",
16+
"test": "npm run test:types",
1617
"test:types": "tsc -p types/test"
1718
},
1819
"watch": {

0 commit comments

Comments
 (0)