Skip to content

Commit 40d9ce9

Browse files
chore(release): [ci] release (next) (#35)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f95c9da commit 40d9ce9

File tree

3 files changed

+52
-1
lines changed

3 files changed

+52
-1
lines changed

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"changesets": [
99
"eighty-mirrors-drive",
1010
"lemon-lies-visit",
11+
"nine-drinks-walk",
1112
"perfect-camels-carry",
1213
"thin-eagles-study"
1314
]

astro-portabletext/CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,55 @@
11
# astro-portabletext
22

3+
## 0.9.0-next.4
4+
5+
### Minor Changes
6+
7+
- f95c9da: **BREAKING CHANGE** `astro-portabletext/components`
8+
9+
- Removed `BlockProps` type
10+
11+
```diff
12+
- import type { BlockProps } from "astro-portabletext/components";
13+
+ import type { Block, Props as $ } from "astro-portabletext/types";
14+
```
15+
16+
```js
17+
// type BlockProps = $<Block>;
18+
```
19+
20+
- Removed `ListProps` type
21+
22+
```diff
23+
- import type { ListProps } from "astro-portabletext/components";
24+
+ import type { List, Props as $ } from "astro-portabletext/types";
25+
```
26+
27+
```js
28+
// type ListProps = $<List>;
29+
```
30+
31+
- Removed `ListItemProps` type
32+
33+
```diff
34+
- import type { ListItemProps } from "astro-portabletext/components";
35+
+ import type { ListItem, Props as $ } from "astro-portabletext/types";
36+
```
37+
38+
```js
39+
// type ListItemProps = $<ListItem>;
40+
```
41+
42+
- Removed `MarkProps` type
43+
44+
```diff
45+
- import type { MarkProps } from "astro-portabletext/components";
46+
+ import type { Mark, Props as $ } from "astro-portabletext/types";
47+
```
48+
49+
```js
50+
// type MarkProps = $<Mark<{...}>>;
51+
```
52+
353
## 0.9.0-next.3
454

555
### Minor Changes

astro-portabletext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "astro-portabletext",
3-
"version": "0.9.0-next.3",
3+
"version": "0.9.0-next.4",
44
"type": "module",
55
"description": "Render Portable Text with Astro",
66
"keywords": [

0 commit comments

Comments
 (0)