Skip to content

Commit

Permalink
chore(release): publish v3.0.2 (#192)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Sep 28, 2023
1 parent f398412 commit d26f833
Show file tree
Hide file tree
Showing 27 changed files with 240 additions and 61 deletions.
23 changes: 0 additions & 23 deletions .changeset/silly-frogs-live.md

This file was deleted.

7 changes: 7 additions & 0 deletions benchmark/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

### Patch Changes

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/parser@3.0.2

## null

### Patch Changes

- Updated dependencies [[`603c3ea`](https://github.com/JiLiZART/BBob/commit/603c3ead0f2b895a447dd9cfe98ce6ef27eec79c)]:
- @bbob/parser@3.0.1

Expand Down
2 changes: 1 addition & 1 deletion benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"url": "https://artkost.ru/"
},
"dependencies": {
"@bbob/parser": "3.0.1",
"@bbob/parser": "3.0.2",
"benchmark": "2.1.4",
"picocolors": "1.0.0",
"xbbcode-parser": "0.1.2",
Expand Down
17 changes: 17 additions & 0 deletions packages/bbob-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/html@3.0.2
- @bbob/preset-html5@3.0.2

## 3.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/bbob-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/cli",
"version": "3.0.0",
"version": "3.0.2",
"description": "Comand line bbcode parser",
"main": "lib/cli.js",
"bin": {
Expand All @@ -10,8 +10,8 @@
"lib": "lib"
},
"dependencies": {
"@bbob/html": "^3.0.0",
"@bbob/preset-html5": "^3.0.0",
"@bbob/html": "^3.0.2",
"@bbob/preset-html5": "^3.0.2",
"commander": "^2.15.1"
},
"repository": {
Expand Down
16 changes: 16 additions & 0 deletions packages/bbob-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/parser@3.0.2

## 3.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/bbob-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/core",
"version": "3.0.0",
"version": "3.0.2",
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
"keywords": [
"bbcode",
Expand All @@ -20,7 +20,7 @@
"core"
],
"dependencies": {
"@bbob/parser": "^3.0.0"
"@bbob/parser": "^3.0.2"
},
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
17 changes: 17 additions & 0 deletions packages/bbob-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/core@3.0.2
- @bbob/plugin-helper@3.0.2

## 3.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/bbob-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/html",
"version": "3.0.0",
"version": "3.0.2",
"description": "A BBCode to HTML Renderer part of @bbob",
"keywords": [
"html",
Expand All @@ -9,8 +9,8 @@
"bbob"
],
"dependencies": {
"@bbob/core": "^3.0.0",
"@bbob/plugin-helper": "^3.0.0"
"@bbob/core": "^3.0.2",
"@bbob/plugin-helper": "^3.0.2"
},
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/bbob-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/plugin-helper@3.0.2

## 3.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/bbob-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/parser",
"version": "3.0.1",
"version": "3.0.2",
"description": "A BBCode to AST Parser part of @bbob",
"keywords": [
"bbcode",
Expand All @@ -13,7 +13,7 @@
"parse"
],
"dependencies": {
"@bbob/plugin-helper": "^3.0.0"
"@bbob/plugin-helper": "^3.0.2"
},
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
13 changes: 13 additions & 0 deletions packages/bbob-plugin-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

## 3.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-plugin-helper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/plugin-helper",
"version": "3.0.0",
"version": "3.0.2",
"description": "Set of utils to help write plugins for @bbob/core",
"keywords": [
"bbob",
Expand Down
17 changes: 17 additions & 0 deletions packages/bbob-preset-html5/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/plugin-helper@3.0.2
- @bbob/preset@3.0.2

## 3.0.0

### Major Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/bbob-preset-html5/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@bbob/preset-html5",
"version": "3.0.0",
"version": "3.0.2",
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
"keywords": [
"preset",
"html5",
"bbob"
],
"dependencies": {
"@bbob/plugin-helper": "^3.0.0",
"@bbob/preset": "^3.0.0"
"@bbob/plugin-helper": "^3.0.2",
"@bbob/preset": "^3.0.2"
},
"devDependencies": {
"@bbob/html": "^3.0.0"
"@bbob/html": "^3.0.2"
},
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/bbob-preset-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/preset-html5@3.0.2

## 3.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/bbob-preset-react/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@bbob/preset-react",
"version": "3.0.0",
"version": "3.0.2",
"description": "React preset to transform BBCode to React for @bbob/react",
"keywords": [
"bbob",
"preset",
"react"
],
"dependencies": {
"@bbob/preset-html5": "^3.0.0"
"@bbob/preset-html5": "^3.0.2"
},
"devDependencies": {
"@bbob/core": "^3.0.0"
"@bbob/core": "^3.0.2"
},
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/bbob-preset-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

- Updated dependencies [[`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540)]:
- @bbob/preset-html5@3.0.2

## 3.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/bbob-preset-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@bbob/preset-vue",
"version": "3.0.0",
"version": "3.0.2",
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
"keywords": [
"bbob",
"preset",
"vue"
],
"dependencies": {
"@bbob/preset-html5": "^3.0.0"
"@bbob/preset-html5": "^3.0.2"
},
"devDependencies": {
"@bbob/core": "^3.0.0"
"@bbob/core": "^3.0.2"
},
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
13 changes: 13 additions & 0 deletions packages/bbob-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## 3.0.2

### Patch Changes

- [#191](https://github.com/JiLiZART/BBob/pull/191) [`0c78831`](https://github.com/JiLiZART/BBob/commit/0c78831372b02216c9be5d95cd8b857c18f81540) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now HTML5 Preset supports `color` tag

```
[color="red"]Red Text[/color]
```

Also fixes bug with case insensitive tags in `onlyAllowTags`
Now you can pas `h1` and `H1` and they will be treated as same tags

## 3.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-preset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset",
"version": "3.0.0",
"version": "3.0.2",
"description": "Base preset for creating extensible presets for @bbob/core",
"keywords": [
"preset",
Expand Down
Loading

0 comments on commit d26f833

Please sign in to comment.