Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 09ed303

Browse files
committed
v9.1.0
1 parent a0173fb commit 09ed303

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
Changelog
22

3+
# v9.1.0
4+
5+
## New features
6+
7+
- Add `@ModelSync` decorator (#254)
8+
- Add `@VModel` decorator (#276)
9+
10+
# Bug fixes
11+
12+
- Make reactive provided values configureable (#330)
13+
14+
# Refactoring / others
15+
16+
- **Breaking change** Rename `vue-property-decorator.ts` to `index.ts` (c8c88642f589c8cb1a2f3a09034a01b17152bae7)
17+
- Exported files are also renamed from `vue-property-decorator.*` to `index.*`
18+
- Split source code into separate files (d7954f8ca1a729a53da207317139fc76cefe98b2)
19+
- Bump dependency versions
20+
321
# v9.0.2
422

523
# v9.0.1 (Failed to publish to npm)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-property-decorator",
3-
"version": "9.0.2",
3+
"version": "9.1.0",
44
"description": "property decorators for Vue Component",
55
"main": "lib/vue-property-decorator.umd.js",
66
"module": "lib/vue-property-decorator.js",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** vue-property-decorator verson 9.0.2 MIT LICENSE copyright 2020 kaorun343 */
1+
/** vue-property-decorator verson 9.1.0 MIT LICENSE copyright 2020 kaorun343 */
22
/// <reference types='reflect-metadata'/>
33
import Vue from 'vue'
44
import Component, { mixins } from 'vue-class-component'

0 commit comments

Comments
 (0)