diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..6e67a79
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,39 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+
+# 2.2.0 (2018-10-11)
+
+
+### Bug Fixes
+
+* **core:** string walk api test error ([bdd8bbd](https://github.com/JiLiZART/bbob/commit/bdd8bbd))
+* **html:** add more tests ([4ebc512](https://github.com/JiLiZART/bbob/commit/4ebc512))
+* **html:** rigt import to support three shaking ([485852d](https://github.com/JiLiZART/bbob/commit/485852d))
+* **parser:** dependency fail ([7300535](https://github.com/JiLiZART/bbob/commit/7300535))
+* **parser:** only allowed tags error ([d3e8e4a](https://github.com/JiLiZART/bbob/commit/d3e8e4a))
+* **parser:** remove bad code ([4d9dc34](https://github.com/JiLiZART/bbob/commit/4d9dc34))
+* **parser:** tokenizer error with quotemark strings ([7f40050](https://github.com/JiLiZART/bbob/commit/7f40050))
+* **plugin-helper:** better handle content of TagNode ([505152b](https://github.com/JiLiZART/bbob/commit/505152b))
+* **react:** remove jsx ([ada2c00](https://github.com/JiLiZART/bbob/commit/ada2c00))
+
+
+### Features
+
+* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
+* **bbob:** add codecov support to travis ([44183fd](https://github.com/JiLiZART/bbob/commit/44183fd))
+* **core:** add helper function to plugin api ([e189a39](https://github.com/JiLiZART/bbob/commit/e189a39))
+* **core:** implement plugin api ([ee047e8](https://github.com/JiLiZART/bbob/commit/ee047e8))
+* **core:** raw tree property support ([bdfd3f6](https://github.com/JiLiZART/bbob/commit/bdfd3f6))
+* **lexer:** new lexer ([#1](https://github.com/JiLiZART/bbob/issues/1)) ([8882651](https://github.com/JiLiZART/bbob/commit/8882651))
+* **parser:** add support for custom tokenizer ([ce03b2f](https://github.com/JiLiZART/bbob/commit/ce03b2f))
+* **parser:** better handlinf of unclosed tags like '[My unclosed and [closed] tag' ([b49b743](https://github.com/JiLiZART/bbob/commit/b49b743))
+* **parser:** better line and column counting support in tokens ([1c3bebe](https://github.com/JiLiZART/bbob/commit/1c3bebe))
+* **parser:** custom open and close tags support, html tags tests ([#3](https://github.com/JiLiZART/bbob/issues/3)) ([790825a](https://github.com/JiLiZART/bbob/commit/790825a))
+* **parser:** inconsistent tag detection test ([2eb83c1](https://github.com/JiLiZART/bbob/commit/2eb83c1))
+* **parser:** optimize size ([4c8dbed](https://github.com/JiLiZART/bbob/commit/4c8dbed))
+* base preset package '[@bbob](https://github.com/bbob)/preset' ([b63864c](https://github.com/JiLiZART/bbob/commit/b63864c))
+* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
+* **preset-html5:** add basic preset with tests ([18ab61b](https://github.com/JiLiZART/bbob/commit/18ab61b))
diff --git a/lerna.json b/lerna.json
index 63cc6b5..3ca9639 100644
--- a/lerna.json
+++ b/lerna.json
@@ -15,5 +15,5 @@
"access": "public",
"registry": "https://registry.npmjs.org/"
},
- "version": "2.1.2"
+ "version": "2.2.0"
}
diff --git a/packages/bbob-cli/CHANGELOG.md b/packages/bbob-cli/CHANGELOG.md
index 76a9672..baea1a3 100644
--- a/packages/bbob-cli/CHANGELOG.md
+++ b/packages/bbob-cli/CHANGELOG.md
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 2.2.0 (2018-10-11)
+
+
+### Features
+
+* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
+
+
+
+
## 2.0.3 (2018-10-07)
diff --git a/packages/bbob-cli/package.json b/packages/bbob-cli/package.json
index 29f542d..d1f2a0d 100644
--- a/packages/bbob-cli/package.json
+++ b/packages/bbob-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@bbob/cli",
- "version": "2.0.3",
+ "version": "2.2.0",
"description": "Comand line bbcode parser",
"main": "lib/bbob.js",
"bin": {
@@ -10,8 +10,8 @@
"lib": "lib"
},
"dependencies": {
- "@bbob/html": "^2.1.1",
- "@bbob/preset-html5": "^2.1.2",
+ "@bbob/html": "^2.2.0",
+ "@bbob/preset-html5": "^2.2.0",
"commander": "^2.15.1"
},
"repository": {
diff --git a/packages/bbob-core/CHANGELOG.md b/packages/bbob-core/CHANGELOG.md
index 5e05068..d1dadcc 100644
--- a/packages/bbob-core/CHANGELOG.md
+++ b/packages/bbob-core/CHANGELOG.md
@@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 2.2.0 (2018-10-11)
+
+
+### Bug Fixes
+
+* **core:** string walk api test error ([bdd8bbd](https://github.com/JiLiZART/bbob/commit/bdd8bbd))
+
+
+### Features
+
+* **core:** add helper function to plugin api ([e189a39](https://github.com/JiLiZART/bbob/commit/e189a39))
+* **core:** implement plugin api ([ee047e8](https://github.com/JiLiZART/bbob/commit/ee047e8))
+* **core:** raw tree property support ([bdfd3f6](https://github.com/JiLiZART/bbob/commit/bdfd3f6))
+* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
+
+
+
+
## 2.1.0 (2018-10-07)
diff --git a/packages/bbob-core/package.json b/packages/bbob-core/package.json
index b61a4e8..4155054 100644
--- a/packages/bbob-core/package.json
+++ b/packages/bbob-core/package.json
@@ -1,6 +1,6 @@
{
"name": "@bbob/core",
- "version": "2.1.0",
+ "version": "2.2.0",
"description": "Fast, flexible, and lean implementation of BBcode parser with plugins",
"keywords": [
"bbcode",
diff --git a/packages/bbob-html/CHANGELOG.md b/packages/bbob-html/CHANGELOG.md
index 9cb7f5a..cfb26ec 100644
--- a/packages/bbob-html/CHANGELOG.md
+++ b/packages/bbob-html/CHANGELOG.md
@@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 2.2.0 (2018-10-11)
+
+
+### Bug Fixes
+
+* **html:** add more tests ([4ebc512](https://github.com/JiLiZART/bbob/commit/4ebc512))
+* **html:** rigt import to support three shaking ([485852d](https://github.com/JiLiZART/bbob/commit/485852d))
+
+
+### Features
+
+* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
+* **parser:** custom open and close tags support, html tags tests ([#3](https://github.com/JiLiZART/bbob/issues/3)) ([790825a](https://github.com/JiLiZART/bbob/commit/790825a))
+* base preset package '[@bbob](https://github.com/bbob)/preset' ([b63864c](https://github.com/JiLiZART/bbob/commit/b63864c))
+* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
+
+
+
+
## [2.1.1](https://github.com/JiLiZART/bbob/compare/@bbob/html@2.1.0...@bbob/html@2.1.1) (2018-10-07)
diff --git a/packages/bbob-html/package.json b/packages/bbob-html/package.json
index 89eb7b6..7cca827 100644
--- a/packages/bbob-html/package.json
+++ b/packages/bbob-html/package.json
@@ -1,11 +1,11 @@
{
"name": "@bbob/html",
- "version": "2.1.1",
+ "version": "2.2.0",
"description": "HTML renderer for BBCode pareser BBob",
"keywords": [],
"dependencies": {
- "@bbob/plugin-helper": "^2.0.1",
- "@bbob/core": "^2.0.1"
+ "@bbob/core": "^2.2.0",
+ "@bbob/plugin-helper": "^2.0.1"
},
"main": "lib/index.js",
"module": "es/index.js",
diff --git a/packages/bbob-preset-html5/CHANGELOG.md b/packages/bbob-preset-html5/CHANGELOG.md
index 5af041d..4d53bca 100644
--- a/packages/bbob-preset-html5/CHANGELOG.md
+++ b/packages/bbob-preset-html5/CHANGELOG.md
@@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 2.2.0 (2018-10-11)
+
+
+### Features
+
+* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
+* **parser:** custom open and close tags support, html tags tests ([#3](https://github.com/JiLiZART/bbob/issues/3)) ([790825a](https://github.com/JiLiZART/bbob/commit/790825a))
+* **preset-html5:** add basic preset with tests ([18ab61b](https://github.com/JiLiZART/bbob/commit/18ab61b))
+* base preset package '[@bbob](https://github.com/bbob)/preset' ([b63864c](https://github.com/JiLiZART/bbob/commit/b63864c))
+* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
+
+
+
+
## 2.1.2 (2018-10-07)
diff --git a/packages/bbob-preset-html5/package.json b/packages/bbob-preset-html5/package.json
index 3b2c08a..94a70dc 100644
--- a/packages/bbob-preset-html5/package.json
+++ b/packages/bbob-preset-html5/package.json
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-html5",
- "version": "2.1.2",
+ "version": "2.2.0",
"description": "HTML5 Preset to transform BBCode to HTML",
"keywords": [
"bbcode",
@@ -14,7 +14,7 @@
"@bbob/preset": "^2.1.0"
},
"devDependencies": {
- "@bbob/html": "^2.1.1"
+ "@bbob/html": "^2.2.0"
},
"main": "lib/index.js",
"module": "es/index.js",
diff --git a/packages/bbob-preset-react/CHANGELOG.md b/packages/bbob-preset-react/CHANGELOG.md
index e820588..9b25ee9 100644
--- a/packages/bbob-preset-react/CHANGELOG.md
+++ b/packages/bbob-preset-react/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 2.2.0 (2018-10-11)
+
+
+
+
+**Note:** Version bump only for package @bbob/preset-react
+
## 2.0.3 (2018-10-07)
diff --git a/packages/bbob-preset-react/package.json b/packages/bbob-preset-react/package.json
index abf7875..8a82e2f 100644
--- a/packages/bbob-preset-react/package.json
+++ b/packages/bbob-preset-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-react",
- "version": "2.0.3",
+ "version": "2.2.0",
"description": "React preset to transform BBCode to React Components",
"keywords": [
"bbcode",
@@ -10,10 +10,10 @@
"transform"
],
"dependencies": {
- "@bbob/preset-html5": "^2.1.2"
+ "@bbob/preset-html5": "^2.2.0"
},
"devDependencies": {
- "@bbob/core": "^2.1.0"
+ "@bbob/core": "^2.2.0"
},
"main": "lib/index.js",
"module": "es/index.js",
diff --git a/packages/bbob-react/CHANGELOG.md b/packages/bbob-react/CHANGELOG.md
index 3b683cc..6f51d21 100644
--- a/packages/bbob-react/CHANGELOG.md
+++ b/packages/bbob-react/CHANGELOG.md
@@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 2.2.0 (2018-10-11)
+
+
+### Bug Fixes
+
+* **react:** remove jsx ([ada2c00](https://github.com/JiLiZART/bbob/commit/ada2c00))
+
+
+### Features
+
+* react render support, move some helper functions to plugin-helper ([1a84968](https://github.com/JiLiZART/bbob/commit/1a84968))
+* new [@bbob](https://github.com/bbob)/html api ([#4](https://github.com/JiLiZART/bbob/issues/4)) ([575c1bb](https://github.com/JiLiZART/bbob/commit/575c1bb))
+
+
+
+
## 2.0.3 (2018-10-07)
diff --git a/packages/bbob-react/package.json b/packages/bbob-react/package.json
index 85250b0..ea1d843 100644
--- a/packages/bbob-react/package.json
+++ b/packages/bbob-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@bbob/react",
- "version": "2.0.3",
+ "version": "2.2.0",
"description": "",
"keywords": [
"bbob",
@@ -8,10 +8,10 @@
"helper"
],
"dependencies": {
- "@bbob/core": "^2.1.0",
- "@bbob/html": "^2.1.1",
+ "@bbob/core": "^2.2.0",
+ "@bbob/html": "^2.2.0",
"@bbob/plugin-helper": "^2.0.1",
- "@bbob/preset-react": "^2.0.3",
+ "@bbob/preset-react": "^2.2.0",
"prop-types": "^15.6.1"
},
"peerDependencies": {