Skip to content

Commit 3954194

Browse files
Prepare for beta.3 release
1 parent d1946f9 commit 3954194

File tree

7 files changed

+49
-9
lines changed

7 files changed

+49
-9
lines changed

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.0.0-beta.3 (2022-11-10)
2+
3+
* Add layouts docs
4+
* Add more docs
5+
6+
## 1.0.0-beta.2 (2022-11-09)
7+
8+
* Update readme and npmignore
9+
110
## 1.0.0-beta.1 (2022-11-09)
211

312
* First beta release

docs-src/md/changelog.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1-
## 1.0.0-beta.1 (2022-10-30)
1+
## 1.0.0-beta.3 (2022-11-10)
2+
3+
* Add layouts docs
4+
* Add more docs
5+
6+
## 1.0.0-beta.2 (2022-11-09)
7+
8+
* Update readme and npmignore
9+
10+
## 1.0.0-beta.1 (2022-11-09)
211

312
* First beta release

docs-src/md/introduction.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Output:
3434

3535
```html
3636
<div class="alert alert-danger" role="alert">
37-
Hi, there! I'm an alert type danger component.
37+
Hi, there! I'm an alert type danger component.
3838
</div>
3939
```
4040

@@ -49,3 +49,5 @@ For example the alert component would be:
4949
Hi, there! I'm an alert type danger component.
5050
</x-ui::alert>
5151
```
52+
53+
See here more docs: [PostHTML Bootstrap UI docs and demo](https://thewebartisan7.github.io/posthtml-bootstrap-ui/index.html).

docs-src/pages/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML &amp; Bootstrap</
1515
</div>
1616

1717
<p class="text-muted">
18-
Currently <strong>v1.0.0-beta.1</strong>
18+
Currently <strong>v1.0.0-beta.3</strong>
1919
<span class="px-1">·</span>
2020
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalChangelog">Changelog</a>
2121
</p>

docs/docs.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ <h2 id="introduction" tabindex="-1">
207207
&lt;/x-alert&gt;</code></pre>
208208
<p>Output:</p>
209209
<pre><code class="language-html">&lt;div class=&quot;alert alert-danger&quot; role=&quot;alert&quot;&gt;
210-
Hi, there! I'm an alert type danger component.
210+
Hi, there! I'm an alert type danger component.
211211
&lt;/div&gt;</code></pre>
212212
<p>
213213
<strong>NOTE</strong>
@@ -224,6 +224,11 @@ <h2 id="introduction" tabindex="-1">
224224
<pre><code class="language-html">&lt;x-ui::alert type=&quot;danger&quot;&gt;
225225
Hi, there! I'm an alert type danger component.
226226
&lt;/x-ui::alert&gt;</code></pre>
227+
<p>
228+
See here more docs:
229+
<a href="https://thewebartisan7.github.io/posthtml-bootstrap-ui/index.html">PostHTML Bootstrap UI docs and demo</a>
230+
.
231+
</p>
227232
</div>
228233
</div>
229234
</div>

docs/index.html

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML &amp; Bootstrap</
159159
</div>
160160
<p class="text-muted">
161161
Currently
162-
<strong>v1.0.0-beta.1</strong>
162+
<strong>v1.0.0-beta.3</strong>
163163
<span class="px-1">·</span>
164164
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalChangelog">Changelog</a>
165165
</p>
@@ -174,9 +174,24 @@ <h5 class="modal-title" id="modalChangelogLabel">Changelog</h5>
174174
</div>
175175
<!-- /.modal-header -->
176176
<div class="modal-body">
177-
<h2 id="1.0.0-beta.1-(2022-10-30)" tabindex="-1">
178-
<a class="header-anchor" href="#1.0.0-beta.1-(2022-10-30)">#</a>
179-
1.0.0-beta.1 (2022-10-30)
177+
<h2 id="1.0.0-beta.3-(2022-11-10)" tabindex="-1">
178+
<a class="header-anchor" href="#1.0.0-beta.3-(2022-11-10)">#</a>
179+
1.0.0-beta.3 (2022-11-10)
180+
</h2>
181+
<ul>
182+
<li>Add layouts docs</li>
183+
<li>Add more docs</li>
184+
</ul>
185+
<h2 id="1.0.0-beta.2-(2022-11-09)" tabindex="-1">
186+
<a class="header-anchor" href="#1.0.0-beta.2-(2022-11-09)">#</a>
187+
1.0.0-beta.2 (2022-11-09)
188+
</h2>
189+
<ul>
190+
<li>Update readme and npmignore</li>
191+
</ul>
192+
<h2 id="1.0.0-beta.1-(2022-11-09)" tabindex="-1">
193+
<a class="header-anchor" href="#1.0.0-beta.1-(2022-11-09)">#</a>
194+
1.0.0-beta.1 (2022-11-09)
180195
</h2>
181196
<ul>
182197
<li>First beta release</li>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "posthtml-bootstrap-ui",
3-
"version": "1.0.0-beta.2",
3+
"version": "1.0.0-beta.3",
44
"description": "PostHTML UI using X Components plugin and Bootstrap",
55
"license": "MIT",
66
"repository": "thewebartisan7/posthtml-bootstrap-ui",

0 commit comments

Comments
 (0)