Skip to content

Commit

Permalink
chore(release): publish v4.2.0 (#268)
Browse files Browse the repository at this point in the history
chore(release): release

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 26, 2024
1 parent 8a9cfd6 commit b09f4fa
Show file tree
Hide file tree
Showing 28 changed files with 550 additions and 72 deletions.
42 changes: 0 additions & 42 deletions .changeset/poor-pears-marry.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/purple-bottles-return.md

This file was deleted.

41 changes: 41 additions & 0 deletions packages/bbob-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Change Log

## 4.2.0

### Minor Changes

- [#251](https://github.com/JiLiZART/BBob/pull/251) [`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491) Thanks [@JiLiZART](https://github.com/JiLiZART)! - New option flag `caseFreeTags` has been added

This flag allows to parse case insensitive tags like `[h1]some[/H1]` -> `<h1>some</h1>`

```js
import html from "@bbob/html";
import presetHTML5 from "@bbob/preset-html5";

const processed = html(`[h1]some[/H1]`, presetHTML5(), {
caseFreeTags: true,
});

console.log(processed); // <h1>some</h1>
```

Also now you can pass `caseFreeTags` to `parse` function

```js
import { parse } from "@bbob/parser";

const ast = parse("[h1]some[/H1]", {
caseFreeTags: true,
});
```

BREAKING CHANGE: `isTokenNested` function now accepts string `tokenValue` instead of `token`

Changed codecov.io to coveralls.io for test coverage

### Patch Changes

- [#267](https://github.com/JiLiZART/BBob/pull/267) [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fix types for BbobCoreOptions

- Updated dependencies [[`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491), [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841)]:
- @bbob/html@4.2.0
- @bbob/preset-html5@4.2.0

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/cli",
"version": "4.1.1",
"version": "4.2.0",
"description": "Comand line bbcode parser",
"bin": {
"bbob": "lib/cli.js"
Expand Down
42 changes: 42 additions & 0 deletions packages/bbob-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# Change Log

## 4.2.0

### Minor Changes

- [#251](https://github.com/JiLiZART/BBob/pull/251) [`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491) Thanks [@JiLiZART](https://github.com/JiLiZART)! - New option flag `caseFreeTags` has been added

This flag allows to parse case insensitive tags like `[h1]some[/H1]` -> `<h1>some</h1>`

```js
import html from "@bbob/html";
import presetHTML5 from "@bbob/preset-html5";

const processed = html(`[h1]some[/H1]`, presetHTML5(), {
caseFreeTags: true,
});

console.log(processed); // <h1>some</h1>
```

Also now you can pass `caseFreeTags` to `parse` function

```js
import { parse } from "@bbob/parser";

const ast = parse("[h1]some[/H1]", {
caseFreeTags: true,
});
```

BREAKING CHANGE: `isTokenNested` function now accepts string `tokenValue` instead of `token`

Changed codecov.io to coveralls.io for test coverage

### Patch Changes

- [#267](https://github.com/JiLiZART/BBob/pull/267) [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fix types for BbobCoreOptions

- Updated dependencies [[`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491), [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841)]:
- @bbob/parser@4.2.0
- @bbob/types@4.2.0
- @bbob/plugin-helper@4.2.0

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/core",
"version": "4.1.1",
"version": "4.2.0",
"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 Down
42 changes: 42 additions & 0 deletions packages/bbob-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# Change Log

## 4.2.0

### Minor Changes

- [#251](https://github.com/JiLiZART/BBob/pull/251) [`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491) Thanks [@JiLiZART](https://github.com/JiLiZART)! - New option flag `caseFreeTags` has been added

This flag allows to parse case insensitive tags like `[h1]some[/H1]` -> `<h1>some</h1>`

```js
import html from "@bbob/html";
import presetHTML5 from "@bbob/preset-html5";

const processed = html(`[h1]some[/H1]`, presetHTML5(), {
caseFreeTags: true,
});

console.log(processed); // <h1>some</h1>
```

Also now you can pass `caseFreeTags` to `parse` function

```js
import { parse } from "@bbob/parser";

const ast = parse("[h1]some[/H1]", {
caseFreeTags: true,
});
```

BREAKING CHANGE: `isTokenNested` function now accepts string `tokenValue` instead of `token`

Changed codecov.io to coveralls.io for test coverage

### Patch Changes

- [#267](https://github.com/JiLiZART/BBob/pull/267) [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fix types for BbobCoreOptions

- Updated dependencies [[`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491), [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841)]:
- @bbob/types@4.2.0
- @bbob/core@4.2.0
- @bbob/plugin-helper@4.2.0

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/html",
"version": "4.1.1",
"version": "4.2.0",
"description": "A BBCode to HTML Renderer part of @bbob",
"keywords": [
"html",
Expand Down
41 changes: 41 additions & 0 deletions packages/bbob-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Change Log

## 4.2.0

### Minor Changes

- [#251](https://github.com/JiLiZART/BBob/pull/251) [`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491) Thanks [@JiLiZART](https://github.com/JiLiZART)! - New option flag `caseFreeTags` has been added

This flag allows to parse case insensitive tags like `[h1]some[/H1]` -> `<h1>some</h1>`

```js
import html from "@bbob/html";
import presetHTML5 from "@bbob/preset-html5";

const processed = html(`[h1]some[/H1]`, presetHTML5(), {
caseFreeTags: true,
});

console.log(processed); // <h1>some</h1>
```

Also now you can pass `caseFreeTags` to `parse` function

```js
import { parse } from "@bbob/parser";

const ast = parse("[h1]some[/H1]", {
caseFreeTags: true,
});
```

BREAKING CHANGE: `isTokenNested` function now accepts string `tokenValue` instead of `token`

Changed codecov.io to coveralls.io for test coverage

### Patch Changes

- [#267](https://github.com/JiLiZART/BBob/pull/267) [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fix types for BbobCoreOptions

- Updated dependencies [[`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491), [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841)]:
- @bbob/types@4.2.0
- @bbob/plugin-helper@4.2.0

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/parser",
"version": "4.1.1",
"version": "4.2.0",
"description": "A BBCode to AST Parser part of @bbob",
"keywords": [
"bbcode",
Expand Down
40 changes: 40 additions & 0 deletions packages/bbob-plugin-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# Change Log

## 4.2.0

### Minor Changes

- [#251](https://github.com/JiLiZART/BBob/pull/251) [`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491) Thanks [@JiLiZART](https://github.com/JiLiZART)! - New option flag `caseFreeTags` has been added

This flag allows to parse case insensitive tags like `[h1]some[/H1]` -> `<h1>some</h1>`

```js
import html from "@bbob/html";
import presetHTML5 from "@bbob/preset-html5";

const processed = html(`[h1]some[/H1]`, presetHTML5(), {
caseFreeTags: true,
});

console.log(processed); // <h1>some</h1>
```

Also now you can pass `caseFreeTags` to `parse` function

```js
import { parse } from "@bbob/parser";

const ast = parse("[h1]some[/H1]", {
caseFreeTags: true,
});
```

BREAKING CHANGE: `isTokenNested` function now accepts string `tokenValue` instead of `token`

Changed codecov.io to coveralls.io for test coverage

### Patch Changes

- [#267](https://github.com/JiLiZART/BBob/pull/267) [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fix types for BbobCoreOptions

- Updated dependencies [[`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491), [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841)]:
- @bbob/types@4.2.0

## 4.1.1

### Patch 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": "4.1.1",
"version": "4.2.0",
"description": "Set of utils to help write plugins for @bbob/core",
"keywords": [
"bbob",
Expand Down
42 changes: 42 additions & 0 deletions packages/bbob-preset-html5/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# Change Log

## 4.2.0

### Minor Changes

- [#251](https://github.com/JiLiZART/BBob/pull/251) [`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491) Thanks [@JiLiZART](https://github.com/JiLiZART)! - New option flag `caseFreeTags` has been added

This flag allows to parse case insensitive tags like `[h1]some[/H1]` -> `<h1>some</h1>`

```js
import html from "@bbob/html";
import presetHTML5 from "@bbob/preset-html5";

const processed = html(`[h1]some[/H1]`, presetHTML5(), {
caseFreeTags: true,
});

console.log(processed); // <h1>some</h1>
```

Also now you can pass `caseFreeTags` to `parse` function

```js
import { parse } from "@bbob/parser";

const ast = parse("[h1]some[/H1]", {
caseFreeTags: true,
});
```

BREAKING CHANGE: `isTokenNested` function now accepts string `tokenValue` instead of `token`

Changed codecov.io to coveralls.io for test coverage

### Patch Changes

- [#267](https://github.com/JiLiZART/BBob/pull/267) [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fix types for BbobCoreOptions

- Updated dependencies [[`ccab54a`](https://github.com/JiLiZART/BBob/commit/ccab54a4547b67d0ea61644e36ca57fdbe8c6491), [`8a9cfd6`](https://github.com/JiLiZART/BBob/commit/8a9cfd67c0f1a9fe6cc8cd74b68b7cdf3d393841)]:
- @bbob/types@4.2.0
- @bbob/plugin-helper@4.2.0
- @bbob/preset@4.2.0

## 4.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-preset-html5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbob/preset-html5",
"version": "4.1.1",
"version": "4.2.0",
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
"keywords": [
"preset",
Expand Down
Loading

0 comments on commit b09f4fa

Please sign in to comment.