diff --git a/CHANGELOG.md b/CHANGELOG.md index f888475..681c062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ Changelog +# v9.1.2 + +## Bug fixes + +- Fix `typings` field in `package.json` (#356) + # v9.1.1 ## Bug fixes diff --git a/package.json b/package.json index cd07c4d..5663a32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-property-decorator", - "version": "9.1.1", + "version": "9.1.2", "description": "property decorators for Vue Component", "main": "lib/index.umd.js", "module": "lib/index.js", diff --git a/src/index.ts b/src/index.ts index 17ef914..deae99c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -/** vue-property-decorator verson 9.1.1 MIT LICENSE copyright 2020 kaorun343 */ +/** vue-property-decorator verson 9.1.2 MIT LICENSE copyright 2020 kaorun343 */ /// import Vue from 'vue' import Component, { mixins } from 'vue-class-component'