Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 3, 2024
1 parent 90cfade commit 3f39124
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 25 deletions.
19 changes: 0 additions & 19 deletions .changeset/moody-spies-learn.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/with-markdoc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/markdoc": "^0.9.4",
"@astrojs/markdoc": "^0.9.5",
"astro": "^4.5.15"
}
}
20 changes: 20 additions & 0 deletions packages/integrations/markdoc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @astrojs/markdoc

## 0.9.5

### Patch Changes

- [#10649](https://github.com/withastro/astro/pull/10649) [`90cfade88c2b9a34d8a5fe711ce329732d690409`](https://github.com/withastro/astro/commit/90cfade88c2b9a34d8a5fe711ce329732d690409) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add automatic resolution for Markdoc partials. This allows you to render other Markdoc files inside of a given entry. Reference files using the `partial` tag with a `file` attribute for the relative file path:

```md
<!--src/content/blog/post.mdoc-->

{% partial file="my-partials/_diagram.mdoc" /%}

<!--src/content/blog/my-partials/_diagram.mdoc-->

## Diagram

This partial will render inside of `post.mdoc.`

![Diagram](./diagram.png)
```

## 0.9.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/markdoc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc in your Astro site",
"version": "0.9.4",
"version": "0.9.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import markdoc from '@astrojs/markdoc';
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import { describe, it, before, after } from 'node:test';
import { after, before, describe, it } from 'node:test';
import { parseHTML } from 'linkedom';
import { loadFixture } from '../../../astro/test/test-utils.js';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import { describe, it, before, after } from 'node:test';
import { after, before, describe, it } from 'node:test';
import { parseHTML } from 'linkedom';
import { loadFixture } from '../../../astro/test/test-utils.js';

Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3f39124

Please sign in to comment.