Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-lefebvre committed Aug 22, 2024
1 parent e2f85b5 commit 7c2db26
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 26 deletions.
20 changes: 0 additions & 20 deletions .changeset/four-trains-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-lies-love.md

This file was deleted.

23 changes: 23 additions & 0 deletions package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# astro-integration-kit

## 0.16.1

### Patch Changes

- e2f85b5: Deprecates the `addDts` utility, it will be removed in a future minor release. You can anticipate this change by bumping your Astro peer dependency to ^4.14.0 and using [injectTypes](https://docs.astro.build/en/reference/integrations-reference/#injecttypes-options):

```diff
"astro:config:setup": (params) => {
- addDts(params, {
- name: "my-integration",
- content: `declare module "virtual:my-integration" {}`
- })
},
"astro:config:done": (params) => {
+ params.injectTypes({
+ filename: "types.d.ts",
+ content: `declare module "virtual:my-integration" {}`
+ })
}
```

- e2f85b5: Fixes an `addDts` incompatibility with Astro >=4.14.0

## 0.16.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-integration-kit",
"version": "0.16.0",
"version": "0.16.1",
"description": "A package that contains utilities to help you build Astro integrations.",
"author": {
"email": "[email protected]",
Expand Down

0 comments on commit 7c2db26

Please sign in to comment.