Skip to content

Commit 9b3611c

Browse files
authored
Merge pull request #883 from openpatch/changeset-release/main
Version Packages
2 parents 1237712 + 0c174f4 commit 9b3611c

File tree

13 files changed

+198
-41
lines changed

13 files changed

+198
-41
lines changed

.changeset/fuzzy-colts-roll.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

packages/fs/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @hyperbook/fs
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- [#882](https://github.com/openpatch/hyperbook/pull/882) [`26ae87e`](https://github.com/openpatch/hyperbook/commit/26ae87e19b01b6c2f45590ade4d681c5a27c932a) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - The release is a complete rewrite of the underlying process to generate the
8+
HTML files. React was removed from the project and replaced with remark
9+
plugins. This improves build times and give us more control over the whole
10+
process. For example there is no need anymore for running `npx hyperbook
11+
setup`.
12+
13+
I also added a new pagelist directive, which can be used to list pages based
14+
on user-defined criteria. This directive also replaces the included glossary
15+
page. Therefore, you need to create on yourself. This can be easily done by
16+
creating a page `glossary.md` with the following content:
17+
18+
```md
19+
---
20+
name: Glossary
21+
---
22+
23+
::pagelist{format="glossary" source="href(/glossary/)"}
24+
```
25+
26+
Additionally, I added the ability to use custom JavaScript and CSS-files - see
27+
the documentation under Advanced Features - in addition to using HTML in your
28+
hyperbook, when the `allowDangerousHtml` option is enabled in your config.
29+
30+
I also improved the appearance of custom links, by moving them to the
31+
footer on mobile devices.
32+
333
## 0.13.1
434

535
### Patch Changes

packages/fs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperbook/fs",
3-
"version": "0.13.1",
3+
"version": "0.14.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/hyperbook/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# hyperbook
22

3+
## 0.34.0
4+
5+
### Minor Changes
6+
7+
- [#882](https://github.com/openpatch/hyperbook/pull/882) [`26ae87e`](https://github.com/openpatch/hyperbook/commit/26ae87e19b01b6c2f45590ade4d681c5a27c932a) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - The release is a complete rewrite of the underlying process to generate the
8+
HTML files. React was removed from the project and replaced with remark
9+
plugins. This improves build times and give us more control over the whole
10+
process. For example there is no need anymore for running `npx hyperbook
11+
setup`.
12+
13+
I also added a new pagelist directive, which can be used to list pages based
14+
on user-defined criteria. This directive also replaces the included glossary
15+
page. Therefore, you need to create on yourself. This can be easily done by
16+
creating a page `glossary.md` with the following content:
17+
18+
```md
19+
---
20+
name: Glossary
21+
---
22+
23+
::pagelist{format="glossary" source="href(/glossary/)"}
24+
```
25+
26+
Additionally, I added the ability to use custom JavaScript and CSS-files - see
27+
the documentation under Advanced Features - in addition to using HTML in your
28+
hyperbook, when the `allowDangerousHtml` option is enabled in your config.
29+
30+
I also improved the appearance of custom links, by moving them to the
31+
footer on mobile devices.
32+
33+
### Patch Changes
34+
35+
- Updated dependencies [[`26ae87e`](https://github.com/openpatch/hyperbook/commit/26ae87e19b01b6c2f45590ade4d681c5a27c932a)]:
36+
- @hyperbook/types@0.9.0
37+
- @hyperbook/fs@0.14.0
38+
339
## 0.33.3
440

541
### Patch Changes

packages/hyperbook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperbook",
3-
"version": "0.33.3",
3+
"version": "0.34.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/markdown/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @hyperbook/markdown
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [#882](https://github.com/openpatch/hyperbook/pull/882) [`26ae87e`](https://github.com/openpatch/hyperbook/commit/26ae87e19b01b6c2f45590ade4d681c5a27c932a) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - The release is a complete rewrite of the underlying process to generate the
8+
HTML files. React was removed from the project and replaced with remark
9+
plugins. This improves build times and give us more control over the whole
10+
process. For example there is no need anymore for running `npx hyperbook
11+
setup`.
12+
13+
I also added a new pagelist directive, which can be used to list pages based
14+
on user-defined criteria. This directive also replaces the included glossary
15+
page. Therefore, you need to create on yourself. This can be easily done by
16+
creating a page `glossary.md` with the following content:
17+
18+
```md
19+
---
20+
name: Glossary
21+
---
22+
23+
::pagelist{format="glossary" source="href(/glossary/)"}
24+
```
25+
26+
Additionally, I added the ability to use custom JavaScript and CSS-files - see
27+
the documentation under Advanced Features - in addition to using HTML in your
28+
hyperbook, when the `allowDangerousHtml` option is enabled in your config.
29+
30+
I also improved the appearance of custom links, by moving them to the
31+
footer on mobile devices.
32+
333
## 0.9.7
434

535
### Patch Changes

packages/markdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperbook/markdown",
3-
"version": "0.9.7",
3+
"version": "0.10.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/types/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @hyperbook/types
22

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- [#882](https://github.com/openpatch/hyperbook/pull/882) [`26ae87e`](https://github.com/openpatch/hyperbook/commit/26ae87e19b01b6c2f45590ade4d681c5a27c932a) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - The release is a complete rewrite of the underlying process to generate the
8+
HTML files. React was removed from the project and replaced with remark
9+
plugins. This improves build times and give us more control over the whole
10+
process. For example there is no need anymore for running `npx hyperbook
11+
setup`.
12+
13+
I also added a new pagelist directive, which can be used to list pages based
14+
on user-defined criteria. This directive also replaces the included glossary
15+
page. Therefore, you need to create on yourself. This can be easily done by
16+
creating a page `glossary.md` with the following content:
17+
18+
```md
19+
---
20+
name: Glossary
21+
---
22+
23+
::pagelist{format="glossary" source="href(/glossary/)"}
24+
```
25+
26+
Additionally, I added the ability to use custom JavaScript and CSS-files - see
27+
the documentation under Advanced Features - in addition to using HTML in your
28+
hyperbook, when the `allowDangerousHtml` option is enabled in your config.
29+
30+
I also improved the appearance of custom links, by moving them to the
31+
footer on mobile devices.
32+
333
## 0.8.1
434

535
### Patch Changes

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperbook/types",
3-
"version": "0.8.1",
3+
"version": "0.9.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/web-component-excalidraw/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @hyperbook/element-excalidraw
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#882](https://github.com/openpatch/hyperbook/pull/882) [`26ae87e`](https://github.com/openpatch/hyperbook/commit/26ae87e19b01b6c2f45590ade4d681c5a27c932a) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - The release is a complete rewrite of the underlying process to generate the
8+
HTML files. React was removed from the project and replaced with remark
9+
plugins. This improves build times and give us more control over the whole
10+
process. For example there is no need anymore for running `npx hyperbook
11+
setup`.
12+
13+
I also added a new pagelist directive, which can be used to list pages based
14+
on user-defined criteria. This directive also replaces the included glossary
15+
page. Therefore, you need to create on yourself. This can be easily done by
16+
creating a page `glossary.md` with the following content:
17+
18+
```md
19+
---
20+
name: Glossary
21+
---
22+
23+
::pagelist{format="glossary" source="href(/glossary/)"}
24+
```
25+
26+
Additionally, I added the ability to use custom JavaScript and CSS-files - see
27+
the documentation under Advanced Features - in addition to using HTML in your
28+
hyperbook, when the `allowDangerousHtml` option is enabled in your config.
29+
30+
I also improved the appearance of custom links, by moving them to the
31+
footer on mobile devices.
32+
333
## 0.6.2
434

535
### Patch Changes

0 commit comments

Comments
 (0)