Skip to content

Commit 148c5d4

Browse files
committed
release: prepare create-markdown 2.0.2
1 parent eef84e3 commit 148c5d4

25 files changed

Lines changed: 167 additions & 109 deletions

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
---
1616

17+
## [2.0.2] - 2026-04-05
18+
19+
### Changed
20+
- Aligned all public create-markdown packages on version 2.0.2.
21+
- Refreshed package/docs version tables so the repo matches the published release line.
22+
- Fixed the security audit strict-mode check to correctly resolve inherited tsconfig settings.
23+
24+
---
25+
1726
## [0.3.0] - 2026-01-27
1827

1928
### Changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Lightweight, block-based markdown solution (_zero dependencies_). Parse, create,
88
## Packages
99
| Package | Version | Description |
1010
|---------|---------|-------------|
11-
| [@create-markdown/core](./packages/core) | 0.2.0 | Zero-dependency parsing and serialization |
12-
| [@create-markdown/react](./packages/react) | 0.2.0 | React components and hooks |
13-
| [@create-markdown/preview](./packages/preview) | 1.0.0 | HTML rendering with themes, plugins, and BYO-parser support |
14-
| [@create-markdown/mdx](./packages/mdx) | 0.2.0 | MDX conversion |
15-
| [create-markdown](./packages/create-markdown) | 0.4.0 | Convenience bundle |
11+
| [@create-markdown/core](./packages/core) | 2.0.2 | Zero-dependency parsing and serialization |
12+
| [@create-markdown/react](./packages/react) | 2.0.2 | React components and hooks |
13+
| [@create-markdown/preview](./packages/preview) | 2.0.2 | HTML rendering with themes, plugins, and BYO-parser support |
14+
| [@create-markdown/mdx](./packages/mdx) | 2.0.2 | MDX conversion |
15+
| [create-markdown](./packages/create-markdown) | 2.0.2 | Convenience bundle |
1616

1717
## Key Features
1818
- **Block-based architecture**: Work with structured blocks instead of raw strings

packages/core/CHANGELOG.md

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

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- Aligned `@create-markdown/core` with the 2.0.2 release line.
8+
- Refreshed release metadata and documentation references for the 2.0.2 publish.
9+
310
## 2.0.1
411

512
### Patch Changes

packages/core/package.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@create-markdown/core",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Block-based markdown parsing and serialization with zero dependencies",
55
"author": "Val Alexander <val@viewdue.ai>",
66
"license": "MIT",
@@ -26,14 +26,9 @@
2626
"types": "./dist/index.d.ts",
2727
"exports": {
2828
".": {
29-
"import": {
30-
"types": "./dist/index.d.ts",
31-
"default": "./dist/index.js"
32-
},
33-
"require": {
34-
"types": "./dist/index.d.ts",
35-
"default": "./dist/index.cjs"
36-
}
29+
"types": "./dist/index.d.ts",
30+
"import": "./dist/index.js",
31+
"require": "./dist/index.cjs"
3732
}
3833
},
3934
"files": [

packages/core/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,4 +259,4 @@ export function toMarkdown(blocksOrDoc: Block[] | { blocks: Block[] }): string {
259259
/**
260260
* Package version
261261
*/
262-
export const VERSION = '2.0.1';
262+
export const VERSION = '2.0.2';

packages/create-markdown/CHANGELOG.md

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

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- Aligned the convenience bundle with the 2.0.2 release line.
8+
- Updated package exports for cleaner TypeScript resolution in downstream apps.
9+
310
## 2.0.1
411

512
### Patch Changes

packages/create-markdown/package.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-markdown",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Complete block-based markdown notes package - convenience bundle for @create-markdown packages",
55
"author": "Val Alexander <val@viewdue.ai>",
66
"license": "MIT",
@@ -30,14 +30,9 @@
3030
"types": "./dist/index.d.ts",
3131
"exports": {
3232
".": {
33-
"import": {
34-
"types": "./dist/index.d.ts",
35-
"default": "./dist/index.js"
36-
},
37-
"require": {
38-
"types": "./dist/index.d.ts",
39-
"default": "./dist/index.cjs"
40-
}
33+
"types": "./dist/index.d.ts",
34+
"import": "./dist/index.js",
35+
"require": "./dist/index.cjs"
4136
},
4237
"./react": {
4338
"import": {
@@ -77,9 +72,10 @@
7772
"@create-markdown/preview": "workspace:^"
7873
},
7974
"devDependencies": {
80-
"@types/react": "^18.2.0",
75+
"@types/react": "^18.3.0",
8176
"react": "^18.2.0",
82-
"typescript": "^5.3.0"
77+
"typescript": "^5.3.0",
78+
"@types/react-dom": "^18.3.0"
8379
},
8480
"peerDependencies": {
8581
"react": ">=18.0.0",

packages/create-markdown/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export * from '@create-markdown/core';
1515
/**
1616
* Package version
1717
*/
18-
export const VERSION = '2.0.1';
18+
export const VERSION = '2.0.2';

packages/docs/CHANGELOG.md

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

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- Updated the docs package and content to reflect the 2.0.2 release line.
8+
- Synced changelog, package version tables, and security policy messaging.
9+
310
## 1.0.1
411

512
### Patch Changes

packages/docs/content/changelog.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
1919

2020
---
2121

22+
## [2.0.2] - 2026-04-05
23+
24+
### Changed
25+
26+
- Aligned all public create-markdown packages on version 2.0.2.
27+
- Refreshed package/docs version tables so the repo matches the published release line.
28+
- Fixed the security audit strict-mode check to correctly resolve inherited tsconfig settings.
29+
30+
---
31+
2232
## [0.3.0] - 2026-01-27
2333

2434
### Changed

0 commit comments

Comments
 (0)