🌐 AI搜索 & 代理 主页
Skip to content

Commit 073ac96

Browse files
authored
chore: bump version and update changelog (#4196)
1 parent e242039 commit 073ac96

File tree

2 files changed

+90
-2
lines changed

2 files changed

+90
-2
lines changed

CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,60 @@
44
> [standard-version](https://github.com/conventional-changelog/standard-version) for commit
55
> guidelines.
66
7+
<a name="2.0.3"></a>
8+
9+
## [v2.0.3](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.0.2...v2.0.3)
10+
11+
Released: 2019-10-05
12+
13+
### Bug Fixes v2.0.3
14+
15+
- **b-form-file:** fix prop type checking for `value` prop
16+
([#4168](https://github.com/bootstrap-vue/bootstrap-vue/issues/4168))
17+
([a8e2e56](https://github.com/bootstrap-vue/bootstrap-vue/commit/a8e2e56))
18+
- **b-nav-item-dropdown:** focus-out handling when new focus comes from another `dropdown-toggle` (closes
19+
[#4113](https://github.com/bootstrap-vue/bootstrap-vue/issues/4113))
20+
([#4139](https://github.com/bootstrap-vue/bootstrap-vue/issues/4139))
21+
([9c37875](https://github.com/bootstrap-vue/bootstrap-vue/commit/9c37875))
22+
- **b-table:** minor code optimizations to filter debouncing
23+
([#4167](https://github.com/bootstrap-vue/bootstrap-vue/issues/4167))
24+
([018eef1](https://github.com/bootstrap-vue/bootstrap-vue/commit/018eef1))
25+
- **b-table, b-table-lite, b-table-simple:** disable sticky header max-height on printers / print media
26+
([#4147](https://github.com/bootstrap-vue/bootstrap-vue/issues/4147))
27+
([24c62c5](https://github.com/bootstrap-vue/bootstrap-vue/commit/24c62c5))
28+
- **b-tooltip, b-popover:** add `SVGElement` as acceptable prop type (closes
29+
[#4173](https://github.com/bootstrap-vue/bootstrap-vue/issues/4173))
30+
([#4174](https://github.com/bootstrap-vue/bootstrap-vue/issues/4174))
31+
([fab7fea](https://github.com/bootstrap-vue/bootstrap-vue/commit/fab7fea))
32+
- **v-b-modal:** bind to inner link or button for dropdown items or nav items (fixes
33+
[#4149](https://github.com/bootstrap-vue/bootstrap-vue/issues/4149))
34+
([#4187](https://github.com/bootstrap-vue/bootstrap-vue/issues/4187))
35+
([5c28bd2](https://github.com/bootstrap-vue/bootstrap-vue/commit/5c28bd2))
36+
37+
### Performance v2.0.3
38+
39+
- **b-table, b-table-lite:** delegate row event handlers to the tbody element
40+
([#4192](https://github.com/bootstrap-vue/bootstrap-vue/issues/4192))
41+
([3f0d46a](https://github.com/bootstrap-vue/bootstrap-vue/commit/3f0d46a))
42+
- **tables:** make `b-th` extend `b-td` instead of using functional wrappers
43+
([#4156](https://github.com/bootstrap-vue/bootstrap-vue/issues/4156))
44+
([c9715a8](https://github.com/bootstrap-vue/bootstrap-vue/commit/c9715a8))
45+
- **tables:** improve provide/inject performance (addresses
46+
[#4155](https://github.com/bootstrap-vue/bootstrap-vue/issues/4155))
47+
([#4164](https://github.com/bootstrap-vue/bootstrap-vue/issues/4164))
48+
([152fefc](https://github.com/bootstrap-vue/bootstrap-vue/commit/152fefc))
49+
50+
### Docs v2.0.3
51+
52+
- add prop descriptions to component reference tables (closes
53+
[#3647](https://github.com/bootstrap-vue/bootstrap-vue/issues/3647))
54+
([#4161](https://github.com/bootstrap-vue/bootstrap-vue/issues/4161))
55+
([fdd2a83](https://github.com/bootstrap-vue/bootstrap-vue/commit/fdd2a83))
56+
- add quick links (page table of contents) to docs pages for small screens, and add table of contents to
57+
section index pages (instead of a redirect to first child page)
58+
([#4145](https://github.com/bootstrap-vue/bootstrap-vue/issues/4145))
59+
([fdd2a83](https://github.com/bootstrap-vue/bootstrap-vue/commit/22268aa))
60+
761
<a name="2.0.2"></a>
862

963
## [v2.0.2](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.0.1...v2.0.2)

package.json

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-vue",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "BootstrapVue, with over 40 plugins and more than 80 custom components, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.",
55
"main": "dist/bootstrap-vue.common.js",
66
"web": "dist/bootstrap-vue.js",
@@ -140,7 +140,41 @@
140140
"standard-version": {
141141
"scripts": {
142142
"postchangelog": "./node_modules/.bin/prettier --write CHANGELOG.md"
143-
}
143+
},
144+
"types": [
145+
{
146+
"type": "fix",
147+
"section": "Bug Fixes"
148+
},
149+
{
150+
"type": "feat",
151+
"section": "Features"
152+
},
153+
{
154+
"type": "perf",
155+
"section": "Performance"
156+
},
157+
{
158+
"type": "docs",
159+
"hidden": true
160+
},
161+
{
162+
"type": "style",
163+
"hidden": true
164+
},
165+
{
166+
"type": "refactor",
167+
"hidden": true
168+
},
169+
{
170+
"type": "chore",
171+
"hidden": true
172+
},
173+
{
174+
"type": "test",
175+
"hidden": true
176+
}
177+
]
144178
},
145179
"keywords": [
146180
"Bootstrap",

0 commit comments

Comments
 (0)