From 028d9f4ca60b06fd6d1d2d7809a1044b87b76e99 Mon Sep 17 00:00:00 2001 From: kaorun343 <5625395+kaorun343@users.noreply.github.com> Date: Sat, 21 Nov 2020 00:44:41 +0900 Subject: [PATCH] v9.1.1 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4981ac1..f888475 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ Changelog +# v9.1.1 + +## Bug fixes + +- Fix `main` and `module` field in `package.json` + # v9.1.0 ## New features diff --git a/package.json b/package.json index 636c4c0..20878e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-property-decorator", - "version": "9.1.0", + "version": "9.1.1", "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 166f288..17ef914 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -/** vue-property-decorator verson 9.1.0 MIT LICENSE copyright 2020 kaorun343 */ +/** vue-property-decorator verson 9.1.1 MIT LICENSE copyright 2020 kaorun343 */ /// import Vue from 'vue' import Component, { mixins } from 'vue-class-component'