Skip to content

Commit 8dacde0

Browse files
Version Packages (#1072)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6fb2e9a commit 8dacde0

File tree

15 files changed

+91
-35
lines changed

15 files changed

+91
-35
lines changed

.changeset/add-title-frontmatter-alias.md

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

.changeset/fix-pagelist-handlebars-helpers.md

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

.changeset/fix-typos-and-bugs.md

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

packages/create/CHANGELOG.md

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

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8f3efe1`](https://github.com/openpatch/hyperbook/commit/8f3efe19ff44fde0b174cc50c0904b8bd09b753f), [`6fb2e9a`](https://github.com/openpatch/hyperbook/commit/6fb2e9a117ed251aeacbe16ffb3cae3d838bbf27)]:
8+
- @hyperbook/types@0.19.0
9+
310
## 0.3.0
411

512
### Minor Changes

packages/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-hyperbook",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Shared logic for creating new Hyperbook projects",
55
"platform": "node",
66
"main": "./dist/index.js",

packages/fs/CHANGELOG.md

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

3+
## 0.23.0
4+
5+
### Minor Changes
6+
7+
- [`8f3efe1`](https://github.com/openpatch/hyperbook/commit/8f3efe19ff44fde0b174cc50c0904b8bd09b753f) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Add `title` as an alternative to `name` in page and section frontmatter for better compatibility with other documentation tools like MkDocs. When both are present, `name` takes precedence.
8+
9+
### Patch Changes
10+
11+
- [`db806c9`](https://github.com/openpatch/hyperbook/commit/db806c9f23fbac79bb23c14629efce74cfd8f08f) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Fix missing handlebars helpers (like `dateformat`) in pagelist custom snippets. The basic helpers are now properly registered when using custom snippet templates with the pagelist directive.
12+
313
## 0.22.0
414

515
### Minor 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.22.0",
3+
"version": "0.23.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/hyperbook/CHANGELOG.md

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

3+
## 0.76.0
4+
5+
### Minor Changes
6+
7+
- [`8f3efe1`](https://github.com/openpatch/hyperbook/commit/8f3efe19ff44fde0b174cc50c0904b8bd09b753f) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Add `title` as an alternative to `name` in page and section frontmatter for better compatibility with other documentation tools like MkDocs. When both are present, `name` takes precedence.
8+
9+
### Patch Changes
10+
11+
- [`db806c9`](https://github.com/openpatch/hyperbook/commit/db806c9f23fbac79bb23c14629efce74cfd8f08f) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Fix missing handlebars helpers (like `dateformat`) in pagelist custom snippets. The basic helpers are now properly registered when using custom snippet templates with the pagelist directive.
12+
13+
- [`6fb2e9a`](https://github.com/openpatch/hyperbook/commit/6fb2e9a117ed251aeacbe16ffb3cae3d838bbf27) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Fix various typos and bugs:
14+
- Fix "Buildung" typo in build progress messages (should be "Building")
15+
- Fix "lanuage" typo in error message (should be "language")
16+
- Fix incorrect MIME type "plain/text" to "text/plain" in dev server
17+
- Fix "aspectRation" typo to "aspectRatio" in types and VSCode schema
18+
- Fix CSS property "aspectRatio:" to "aspect-ratio:" in embed directive
19+
- Fix incorrect repository URL in README (openpath → openpatch)
20+
- Update minimum Node.js version from 12.22.0 to 18
21+
322
## 0.75.0
423

524
### Minor 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.75.0",
3+
"version": "0.76.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/markdown/CHANGELOG.md

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

3+
## 0.47.1
4+
5+
### Patch Changes
6+
7+
- [`db806c9`](https://github.com/openpatch/hyperbook/commit/db806c9f23fbac79bb23c14629efce74cfd8f08f) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Fix missing handlebars helpers (like `dateformat`) in pagelist custom snippets. The basic helpers are now properly registered when using custom snippet templates with the pagelist directive.
8+
9+
- [`6fb2e9a`](https://github.com/openpatch/hyperbook/commit/6fb2e9a117ed251aeacbe16ffb3cae3d838bbf27) Thanks [@mikebarkmin](https://github.com/mikebarkmin)! - Fix various typos and bugs:
10+
- Fix "Buildung" typo in build progress messages (should be "Building")
11+
- Fix "lanuage" typo in error message (should be "language")
12+
- Fix incorrect MIME type "plain/text" to "text/plain" in dev server
13+
- Fix "aspectRation" typo to "aspectRatio" in types and VSCode schema
14+
- Fix CSS property "aspectRatio:" to "aspect-ratio:" in embed directive
15+
- Fix incorrect repository URL in README (openpath → openpatch)
16+
- Update minimum Node.js version from 12.22.0 to 18
17+
318
## 0.47.0
419

520
### Minor Changes

0 commit comments

Comments
 (0)