Skip to content

Commit

Permalink
Prepare for release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thewebartisan7 committed Mar 17, 2023
1 parent 56cdd50 commit 1775153
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 7 deletions.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.1.0 (2023-03-17)

v.1.1.0 Stable Release

* Add support for customizing posthtml-parser #31
* Enable by default self-closing tag

## 1.0.0 (2023-03-14)

First Stable Release
Expand Down
7 changes: 3 additions & 4 deletions docs-src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ readdirSync(src).forEach(file => {
locals: {
title: 'PostHTML Components'
}
},
parserOptions: {
// Don't work
recognizeSelfClosing: false
}
// parserOptions: {
// recognizeSelfClosing: false
// }
}),

markdownIt({
Expand Down
7 changes: 7 additions & 0 deletions docs-src/md/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.1.0 (2023-03-17)

v.1.1.0 Stable Release

* Add support for customizing posthtml-parser #31
* Enable by default self-closing tag

## 1.0.0 (2023-03-14)

First Stable Release
Expand Down
2 changes: 1 addition & 1 deletion docs-src/pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML</h1>
</div>

<p class="text-muted">
Currently <strong>v1.0.0</strong>
Currently <strong>v1.1.0</strong>
<span class="px-1">·</span>
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalWithComponents">Changelog</a>
</p>
Expand Down
9 changes: 9 additions & 0 deletions docs/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.1.0-(2023-03-17)" tabindex="-1">
<a class="header-anchor" href="#1.1.0-(2023-03-17)">#</a>
1.1.0 (2023-03-17)
</h2>
<p>v.1.1.0 Stable Release</p>
<ul>
<li>Add support for customizing posthtml-parser #31</li>
<li>Enable by default self-closing tag</li>
</ul>
<h2 id="1.0.0-(2023-03-14)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-(2023-03-14)">#</a>
1.0.0 (2023-03-14)
Expand Down
9 changes: 9 additions & 0 deletions docs/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -1583,6 +1583,15 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.1.0-(2023-03-17)" tabindex="-1">
<a class="header-anchor" href="#1.1.0-(2023-03-17)">#</a>
1.1.0 (2023-03-17)
</h2>
<p>v.1.1.0 Stable Release</p>
<ul>
<li>Add support for customizing posthtml-parser #31</li>
<li>Enable by default self-closing tag</li>
</ul>
<h2 id="1.0.0-(2023-03-14)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-(2023-03-14)">#</a>
1.0.0 (2023-03-14)
Expand Down
11 changes: 10 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML</h1>
</div>
<p class="text-muted">
Currently
<strong>v1.0.0</strong>
<strong>v1.1.0</strong>
<span class="px-1">·</span>
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalWithComponents">Changelog</a>
</p>
Expand Down Expand Up @@ -93,6 +93,15 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.1.0-(2023-03-17)" tabindex="-1">
<a class="header-anchor" href="#1.1.0-(2023-03-17)">#</a>
1.1.0 (2023-03-17)
</h2>
<p>v.1.1.0 Stable Release</p>
<ul>
<li>Add support for customizing posthtml-parser #31</li>
<li>Enable by default self-closing tag</li>
</ul>
<h2 id="1.0.0-(2023-03-14)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-(2023-03-14)">#</a>
1.0.0 (2023-03-14)
Expand Down
9 changes: 9 additions & 0 deletions docs/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,15 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.1.0-(2023-03-17)" tabindex="-1">
<a class="header-anchor" href="#1.1.0-(2023-03-17)">#</a>
1.1.0 (2023-03-17)
</h2>
<p>v.1.1.0 Stable Release</p>
<ul>
<li>Add support for customizing posthtml-parser #31</li>
<li>Enable by default self-closing tag</li>
</ul>
<h2 id="1.0.0-(2023-03-14)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-(2023-03-14)">#</a>
1.0.0 (2023-03-14)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posthtml-component",
"version": "1.0.0",
"version": "1.1.0",
"description": "PostHTML Components Blade-like with slots, attributes as props and custom tag",
"license": "MIT",
"repository": "thewebartisan7/posthtml-components",
Expand Down

0 comments on commit 1775153

Please sign in to comment.