Skip to content

Commit 612f19e

Browse files
authored
chore: release v2.2.2
2 parents a25c099 + a9c1757 commit 612f19e

File tree

6 files changed

+58
-24
lines changed

6 files changed

+58
-24
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44
> [standard-version](https://github.com/conventional-changelog/standard-version) for commit
55
> guidelines.
66
7+
<a name="2.2.2"></a>
8+
9+
## [v2.2.2](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.2.1...v2.2.2)
10+
11+
Released: 2020-01-15
12+
13+
### Bug Fixes v2.2.2
14+
15+
- **nuxt module:** remove unnecessary export statements
16+
([#4624](https://github.com/bootstrap-vue/bootstrap-vue/issues/4624))
17+
([27f066c](https://github.com/bootstrap-vue/bootstrap-vue/commit/27f066cfa07ee311fe1e312d9a9ebd0eb76750c7))
18+
19+
### Other v2.2.2
20+
21+
- dev dependencies updates
22+
- minor docs updates
23+
724
<a name="2.2.1"></a>
825

926
## [v2.2.1](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.2.0...v2.2.1)

docs/markdown/reference/color-variants/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- `secondary` - <span class="text-secondary">Secondary</span>
1111
- `success` - <span class="text-success">Success</span>
1212
- `warning` - <span class="text-warning">Warning</span>
13-
- `danger` - <span class="text-danger">danger</span>
13+
- `danger` - <span class="text-danger">Danger</span>
1414
- `info` - <span class="text-info">Info</span>
1515
- `light` - <span class="text-light">Light</span>
1616
- `dark` - <span class="text-dark">Dark</span>

nuxt/index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ const srcIndex = 'bootstrap-vue/src/index.js'
1111
// --- Utility methods ---
1212

1313
// Converts PascalCase or camelCase to kebab-case
14-
export const kebabCase = str => {
14+
const kebabCase = str => {
1515
return str.replace(RX_HYPHENATE, '-$1').toLowerCase()
1616
}
1717

1818
// Converts a kebab-case or camelCase string to PascalCase
19-
export const pascalCase = str => {
19+
const pascalCase = str => {
2020
str = kebabCase(str).replace(RX_UN_KEBAB, (_, c) => (c ? c.toUpperCase() : ''))
2121
return str.charAt(0).toUpperCase() + str.slice(1)
2222
}
@@ -161,7 +161,8 @@ module.exports = function nuxtBootstrapVue(moduleOptions = {}) {
161161
if (
162162
templateOptions.treeShake &&
163163
templateOptions.icons &&
164-
templateOptions.componentPlugins.indexOf('IconsPlugin') === -1
164+
templateOptions.componentPlugins.indexOf('IconsPlugin') === -1 &&
165+
templateOptions.componentPlugins.indexOf('BootstrapVueIcons') === -1
165166
) {
166167
templateOptions.componentPlugins.push('IconsPlugin')
167168
}

package.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-vue",
3-
"version": "2.2.1",
3+
"version": "2.2.2",
44
"description": "BootstrapVue, with over 40 plugins and more than 80 custom components, custom directives, and over 300 icons, 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",
@@ -105,7 +105,7 @@
105105
"@nuxtjs/google-analytics": "^2.2.3",
106106
"@nuxtjs/pwa": "^3.0.0-beta.19",
107107
"@vue/test-utils": "1.0.0-beta.29",
108-
"autoprefixer": "^9.7.3",
108+
"autoprefixer": "^9.7.4",
109109
"babel-core": "^7.0.0-bridge.0",
110110
"babel-eslint": "^10.0.3",
111111
"babel-jest": "^24.9.0",
@@ -133,7 +133,7 @@
133133
"gh-pages": "^2.2.0",
134134
"highlight.js": "^9.17.1",
135135
"html-loader": "^0.5.5",
136-
"husky": "^4.0.7",
136+
"husky": "^4.0.10",
137137
"jest": "^24.9.0",
138138
"jest-environment-jsdom-fourteen": "^1.0.1",
139139
"lint-staged": "^9.5.0",
@@ -154,7 +154,7 @@
154154
"terser": "^4.6.3",
155155
"vue": "^2.6.11",
156156
"vue-jest": "^3.0.5",
157-
"vue-router": "^3.1.3",
157+
"vue-router": "^3.1.5",
158158
"vue-server-renderer": "^2.6.11",
159159
"vue-template-compiler": "^2.6.11"
160160
},
@@ -217,6 +217,8 @@
217217
"Popper",
218218
"CSS",
219219
"SCSS",
220+
"Icons",
221+
"Bootstrap Icons",
220222
"Flexbox",
221223
"Alert",
222224
"Breadcrumb",
@@ -247,12 +249,13 @@
247249
"Tab",
248250
"Table",
249251
"Tag",
252+
"Tags",
250253
"Toast",
251254
"Tooltip",
252255
"vue-bootstrap",
253256
"vue-strap",
254-
"vuetify",
255-
"vuestrap"
257+
"vuestrap",
258+
"uiv"
256259
],
257260
"collective": {
258261
"type": "opencollective",

src/components/form-tags/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> Lightweight custom tagged input form control, with options for customized interface rendering,
44
> duplicate tag detection and optional tag validation.
55
6-
Tags are arrays of short strings, used in various ways such as assinging categories. Use the default
6+
Tags are arrays of short strings, used in various ways such as assigning categories. Use the default
77
user interface, or create your own custom interface via the use of the default scoped slot.
88

99
The tagged input was added in BootstrapVue release `v2.2.0`.

yarn.lock

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2786,17 +2786,17 @@ autoprefixer@^9.6.1:
27862786
postcss "^7.0.23"
27872787
postcss-value-parser "^4.0.2"
27882788

2789-
autoprefixer@^9.7.3:
2790-
version "9.7.3"
2791-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.3.tgz#fd42ed03f53de9beb4ca0d61fb4f7268a9bb50b4"
2792-
integrity sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
2789+
autoprefixer@^9.7.4:
2790+
version "9.7.4"
2791+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378"
2792+
integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g==
27932793
dependencies:
2794-
browserslist "^4.8.0"
2795-
caniuse-lite "^1.0.30001012"
2794+
browserslist "^4.8.3"
2795+
caniuse-lite "^1.0.30001020"
27962796
chalk "^2.4.2"
27972797
normalize-range "^0.1.2"
27982798
num2fraction "^1.2.2"
2799-
postcss "^7.0.23"
2799+
postcss "^7.0.26"
28002800
postcss-value-parser "^4.0.2"
28012801

28022802
aws-sign2@~0.7.0:
@@ -3557,7 +3557,7 @@ caniuse-lite@^1.0.30001015, caniuse-lite@^1.0.30001016:
35573557
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001016.tgz#16ea48d7d6e8caf3cad3295c2d746fe38c4e7f66"
35583558
integrity sha512-yYQ2QfotceRiH4U+h1Us86WJXtVHDmy3nEKIdYPsZCYnOV5/tMgGbmoIlrMzmh2VXlproqYtVaKeGDBkMZifFA==
35593559

3560-
caniuse-lite@^1.0.30001017:
3560+
caniuse-lite@^1.0.30001017, caniuse-lite@^1.0.30001020:
35613561
version "1.0.30001020"
35623562
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001020.tgz#3f04c1737500ffda78be9beb0b5c1e2070e15926"
35633563
integrity sha512-yWIvwA68wRHKanAVS1GjN8vajAv7MBFshullKCeq/eKpK7pJBVDgFFEqvgWTkcP2+wIDeQGYFRXECjKZnLkUjA==
@@ -6897,15 +6897,14 @@ humps@^2.0.1:
68976897
resolved "https://registry.yarnpkg.com/humps/-/humps-2.0.1.tgz#dd02ea6081bd0568dc5d073184463957ba9ef9aa"
68986898
integrity sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=
68996899

6900-
husky@^4.0.7:
6901-
version "4.0.7"
6902-
resolved "https://registry.yarnpkg.com/husky/-/husky-4.0.7.tgz#cee4301d1db1d731be9c2aa2ac72b46439d30c91"
6903-
integrity sha512-ULivTOe0k+nNjZKIojoHxXjybtEycaba0EDuk1G8iNGD8wZgo8Sr3YiN8bKitXNpI1RvVKTJwRnh2GLysLbxMQ==
6900+
husky@^4.0.10:
6901+
version "4.0.10"
6902+
resolved "https://registry.yarnpkg.com/husky/-/husky-4.0.10.tgz#659b52c404d3163b943a73f6c1d454708c0226d8"
6903+
integrity sha512-Ptm4k2DqOwxeK/kzu5RaJmNRoGvESrgDXObFcZ8aJZcyXyMBHhM2FqZj6zYKdetadmP3wCwxEHCBuB9xGlRp8A==
69046904
dependencies:
69056905
chalk "^3.0.0"
69066906
ci-info "^2.0.0"
69076907
cosmiconfig "^6.0.0"
6908-
get-stdin "^7.0.0"
69096908
opencollective-postinstall "^2.0.2"
69106909
pkg-dir "^4.2.0"
69116910
please-upgrade-node "^3.2.0"
@@ -10706,6 +10705,15 @@ postcss@^7.0.25:
1070610705
source-map "^0.6.1"
1070710706
supports-color "^6.1.0"
1070810707

10708+
postcss@^7.0.26:
10709+
version "7.0.26"
10710+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.26.tgz#5ed615cfcab35ba9bbb82414a4fa88ea10429587"
10711+
integrity sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
10712+
dependencies:
10713+
chalk "^2.4.2"
10714+
source-map "^0.6.1"
10715+
supports-color "^6.1.0"
10716+
1070910717
prelude-ls@~1.1.2:
1071010718
version "1.1.2"
1071110719
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
@@ -13331,6 +13339,11 @@ vue-router@^3.1.3:
1333113339
resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.1.3.tgz#e6b14fabc0c0ee9fda0e2cbbda74b350e28e412b"
1333213340
integrity sha512-8iSa4mGNXBjyuSZFCCO4fiKfvzqk+mhL0lnKuGcQtO1eoj8nq3CmbEG8FwK5QqoqwDgsjsf1GDuisDX4cdb/aQ==
1333313341

13342+
vue-router@^3.1.5:
13343+
version "3.1.5"
13344+
resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.1.5.tgz#ff29b8a1e1306c526b52d4dc0532109f16c41231"
13345+
integrity sha512-BszkPvhl7I9h334GjckCh7sVFyjTPMMJFJ4Bsrem/Ik+B/9gt5tgrk8k4gGLO4ZpdvciVdg7O41gW4DisQWurg==
13346+
1333413347
vue-server-renderer@^2.6.11:
1333513348
version "2.6.11"
1333613349
resolved "https://registry.yarnpkg.com/vue-server-renderer/-/vue-server-renderer-2.6.11.tgz#be8c9abc6aacc309828a755c021a05fc474b4bc3"

0 commit comments

Comments
 (0)