Skip to content

Commit b4d95e5

Browse files
committed
chore: Version bump
1 parent ff1710b commit b4d95e5

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
### [0.3.0] - 2021-02-03
5+
- refactor: converted the whole codebase to typescript.
6+
- feat(typescript): exported type definitions for all components.
7+
- feat(Combobox): the dropdown trigger element is now slotted (slot name is `dropdownTrigger`) for better customization.
8+
9+
### Fixed
10+
- fix(Dropdown): fixed removal of event listeners on umount.
11+
12+
### Changed
13+
- **BACKWARD INCOMPATIBLE CHANGE**: All components are now exported with the name matching the component name (eg. `PfButton` instead of `Button`). The old exports are maintained for backwards compatibility but importing `* from 'vue-patternfly'` will now include the same components exported twice.
14+
- **BACKWARD INCOMPATIBLE CHANGE**: All sort direction properties have been normalized as `'asc' | 'desc'` instead of a mix of `'asc' | 'desc'` and `'ascending' | 'descending'`.
15+
416
### [0.2.11] - 2021-12-31
517
### Fixed
618
- fix(Dropdown): avoided possible access to undefined $refs while destructing the component.
@@ -384,7 +396,8 @@ disabled, as per PatternFly design guidelines.
384396
- `pf-toolbar` component
385397
- `pf-utilization-bar-chart` component
386398

387-
[Unreleased]: https://github.com/mtorromeo/vue-patternfly/compare/v0.2.11...HEAD
399+
[Unreleased]: https://github.com/mtorromeo/vue-patternfly/compare/v0.3.0...HEAD
400+
[0.3.0]: https://github.com/mtorromeo/vue-patternfly/compare/v0.2.11...v0.3.0
388401
[0.2.11]: https://github.com/mtorromeo/vue-patternfly/compare/v0.2.10...v0.2.11
389402
[0.2.10]: https://github.com/mtorromeo/vue-patternfly/compare/v0.2.9...v0.2.10
390403
[0.2.9]: https://github.com/mtorromeo/vue-patternfly/compare/v0.2.8...v0.2.9

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-patternfly",
3-
"version": "0.2.11",
3+
"version": "0.3.0",
44
"description": "PatternFly 3 components for Vue 3",
55
"main": "dist/vue-patternfly.umd.js",
66
"module": "dist/vue-patternfly.es.js",

0 commit comments

Comments
 (0)