Skip to content

Commit

Permalink
[Release] 0.35.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kiaking committed Jan 28, 2020
1 parent e6f8399 commit 0cf0c3c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions dist/vuex-orm.common.js
Expand Up @@ -2154,6 +2154,10 @@ var Model = /** @class */ (function () {
* @deprecated Use `uid` attribute instead.
*/
Model.increment = function () {
/* istanbul ignore next */
if (process.env.NODE_ENV !== 'production') {
console.warn('[Vuex ORM] Attribute type `increment` has been deprecated and replaced with `uid`.');
}
return this.uid();
};
/**
Expand Down
4 changes: 4 additions & 0 deletions dist/vuex-orm.esm.js
Expand Up @@ -2152,6 +2152,10 @@ var Model = /** @class */ (function () {
* @deprecated Use `uid` attribute instead.
*/
Model.increment = function () {
/* istanbul ignore next */
if (process.env.NODE_ENV !== 'production') {
console.warn('[Vuex ORM] Attribute type `increment` has been deprecated and replaced with `uid`.');
}
return this.uid();
};
/**
Expand Down
4 changes: 4 additions & 0 deletions dist/vuex-orm.js
Expand Up @@ -2158,6 +2158,10 @@
* @deprecated Use `uid` attribute instead.
*/
Model.increment = function () {
/* istanbul ignore next */
if (process.env.NODE_ENV !== 'production') {
console.warn('[Vuex ORM] Attribute type `increment` has been deprecated and replaced with `uid`.');
}
return this.uid();
};
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/vuex-orm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@vuex-orm/core",
"version": "0.35.0",
"version": "0.35.1",
"description": "The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.",
"main": "dist/vuex-orm.common.js",
"module": "dist/vuex-orm.esm.js",
Expand Down

0 comments on commit 0cf0c3c

Please sign in to comment.