Skip to content

Commit 8a69e50

Browse files
author
Pooya Parsa
committed
chore(release): 2.0.0-rc.0
1 parent 2c8a28a commit 8a69e50

File tree

2 files changed

+44
-7
lines changed

2 files changed

+44
-7
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="2.0.0-rc.0"></a>
6+
# [2.0.0-rc.0](https://github.com/bootstrap-vue/bootstrap-vue/compare/v1.5.0...v2.0.0-rc.0) (2018-01-23)
7+
8+
9+
### Bug Fixes
10+
11+
* **checkbox,radio:** update HTML markup for BS4 ([#1539](https://github.com/bootstrap-vue/bootstrap-vue/issues/1539)) ([ccfb5b1](https://github.com/bootstrap-vue/bootstrap-vue/commit/ccfb5b1))
12+
13+
14+
* feat, docs: update input-group to BS 4.0.0. ([790c0de](https://github.com/bootstrap-vue/bootstrap-vue/commit/790c0de))
15+
16+
17+
### Features
18+
19+
* **package:** align dependencies to prevent warnings. ([#975](https://github.com/bootstrap-vue/bootstrap-vue/issues/975)) ([b70a9f7](https://github.com/bootstrap-vue/bootstrap-vue/commit/b70a9f7))
20+
* **pkg:** update dependendencies (bootstrap 4.0.0-beta.3) ([afb82a8](https://github.com/bootstrap-vue/bootstrap-vue/commit/afb82a8))
21+
* upgrade to bootstrap 4.0.0 ([#1507](https://github.com/bootstrap-vue/bootstrap-vue/issues/1507)) ([1d5b230](https://github.com/bootstrap-vue/bootstrap-vue/commit/1d5b230))
22+
23+
24+
### misc
25+
26+
* better packaging of css files ([87edbb9](https://github.com/bootstrap-vue/bootstrap-vue/commit/87edbb9))
27+
28+
29+
### BREAKING CHANGES
30+
31+
* Requires changing build scripts to include css-loader when using indivitual components
32+
* left and right changed into prepend and append. See docs.
33+
34+
35+
536
<a name="1.5.0"></a>
637
# [1.5.0](https://github.com/bootstrap-vue/bootstrap-vue/compare/v1.4.1...v1.5.0) (2018-01-23)
738

package.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "bootstrap-vue",
3-
"version": "1.5.0",
4-
"description":
5-
"BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.",
3+
"version": "2.0.0-rc.0",
4+
"description": "BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.",
65
"main": "dist/bootstrap-vue.common.js",
76
"web": "dist/bootstrap-vue.js",
87
"module": "es/index.js",
@@ -43,15 +42,19 @@
4342
"type": "git",
4443
"url": "git+https://github.com/bootstrap-vue/bootstrap-vue.git"
4544
},
46-
"files": ["src", "dist", "nuxt", "es"],
45+
"files": [
46+
"src",
47+
"dist",
48+
"nuxt",
49+
"es"
50+
],
4751
"scripts": {
4852
"build": "scripts/build",
4953
"watch": "rollup -c scripts/rollup.config.js --watch",
5054
"docs-dev": "nuxt dev -c docs/nuxt.config.js",
5155
"docs-gen": "nuxt generate -c docs/nuxt.config.js",
5256
"docs-build": "nuxt build -c docs/nuxt.config.js",
53-
"docs-publish":
54-
"gh-pages -t -d docs-dist -b master -r git@github.com:bootstrap-vue/bootstrap-vue.github.io.git",
57+
"docs-publish": "gh-pages -t -d docs-dist -b master -r git@github.com:bootstrap-vue/bootstrap-vue.github.io.git",
5558
"test": "yarn lint && NODE_ENV=test jest",
5659
"lint": "eslint src scripts docs tests nuxt",
5760
"release": "npm run build && npm run test && standard-version",
@@ -107,7 +110,10 @@
107110
},
108111
"jest": {
109112
"testRegex": "spec.js$",
110-
"moduleFileExtensions": ["js", "vue"],
113+
"moduleFileExtensions": [
114+
"js",
115+
"vue"
116+
],
111117
"transform": {
112118
"^.+\\.js$": "babel-jest",
113119
".*\\.(vue)$": "vue-jest",

0 commit comments

Comments
 (0)