Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 4, 2024
1 parent 3274d2b commit b73db7a
Show file tree
Hide file tree
Showing 23 changed files with 110 additions and 78 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-cameras-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-hotels-fail.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-dragons-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-cooks-kneel.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/slow-falcons-scream.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/smart-steaks-itch.md

This file was deleted.

6 changes: 3 additions & 3 deletions examples/contentlayer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
},
"dependencies": {
"contentlayer": "0.3.4",
"fumadocs-contentlayer": "1.1.0",
"fumadocs-core": "9.1.0",
"fumadocs-ui": "9.1.0",
"fumadocs-contentlayer": "1.1.1",
"fumadocs-core": "10.0.0",
"fumadocs-ui": "10.0.0",
"next": "14.0.4",
"next-contentlayer": "0.3.4",
"react": "18.2.0",
Expand Down
6 changes: 3 additions & 3 deletions examples/next-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"start": "next start"
},
"dependencies": {
"fumadocs-core": "9.1.0",
"fumadocs-mdx": "8.1.0",
"fumadocs-ui": "9.1.0",
"fumadocs-core": "10.0.0",
"fumadocs-mdx": "8.1.1",
"fumadocs-ui": "10.0.0",
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/contentlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# fumadocs-contentlayer

## 1.1.1

### Patch Changes

- Updated dependencies [b5d16938]
- Updated dependencies [321d1e1f]
- [email protected]

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contentlayer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fumadocs-contentlayer",
"version": "1.1.0",
"version": "1.1.1",
"description": "The Contentlayer adapter for Fumadocs",
"keywords": [
"NextJs",
Expand Down
19 changes: 19 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# next-docs-zeta

## 10.0.0

### Major Changes

- 321d1e1f: **Move Typescript integrations to `fumadocs-typescript`**

why: It is now a stable feature

migrate: Use `fumadocs-typescript` instead.

```diff
- import { AutoTypeTable } from "fumadocs-ui/components/auto-type-table"
+ import { AutoTypeTable } from "fumadocs-typescript/ui"
```

### Minor Changes

- b5d16938: Support external link in `pages` property

## 9.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fumadocs-core",
"version": "9.1.0",
"version": "10.0.0",
"description": "The library for building a documentation website in Next.js",
"keywords": [
"NextJs",
Expand Down
2 changes: 2 additions & 0 deletions packages/create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-next-docs-app

## 10.0.0

## 9.1.0

## 9.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/create-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-fumadocs-app",
"version": "9.1.0",
"version": "10.0.0",
"description": "Create a new documentation site with Fumadocs",
"keywords": [
"NextJs",
Expand Down
8 changes: 8 additions & 0 deletions packages/mdx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# next-docs-mdx

## 8.1.1

### Patch Changes

- Updated dependencies [b5d16938]
- Updated dependencies [321d1e1f]
- [email protected]

## 8.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fumadocs-mdx",
"version": "8.1.0",
"version": "8.1.1",
"description": "The built-in source for Fumadocs",
"keywords": [
"NextJs",
Expand Down
21 changes: 21 additions & 0 deletions packages/openapi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @fuma-docs/openapi

## 2.0.0

### Major Changes

- eacd7b0b: **Remove support for bin usages**

why: It is more flexible and faster to write a script directly.

migrate: Create a script named `scripts/generate-docs.mjs`:

```js
import { generateFiles } from 'fumadocs-openapi';

void generateFiles({
input: ['./petstore.yaml'],
output: './content/docs',
});
```

Execute it with `node ./scripts/generate-docs.mjs`.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fumadocs-openapi",
"version": "1.1.0",
"version": "2.0.0",
"description": "Generate MDX docs for your OpenAPI spec",
"keywords": [
"NextJs",
Expand Down
11 changes: 11 additions & 0 deletions packages/typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# fumadocs-typescript

## 1.0.0

### Major Changes

- 321d1e1f: Support markdown in type description

### Minor Changes

- 722c2d6e: Support generating MDX files
2 changes: 1 addition & 1 deletion packages/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fumadocs-typescript",
"version": "0.0.0",
"version": "1.0.0",
"description": "Typescript Integration for Fumadocs",
"keywords": [
"NextJs",
Expand Down
22 changes: 22 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# next-docs-ui

## 10.0.0

### Major Changes

- 321d1e1f: **Move Typescript integrations to `fumadocs-typescript`**

why: It is now a stable feature

migrate: Use `fumadocs-typescript` instead.

```diff
- import { AutoTypeTable } from "fumadocs-ui/components/auto-type-table"
+ import { AutoTypeTable } from "fumadocs-typescript/ui"
```

### Patch Changes

- de7ed150: Hide external items from navigation footer
- Updated dependencies [b5d16938]
- Updated dependencies [321d1e1f]
- [email protected]

## 9.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fumadocs-ui",
"version": "9.1.0",
"version": "10.0.0",
"description": "The framework for building a documentation website in Next.js",
"keywords": [
"NextJs",
Expand Down
16 changes: 6 additions & 10 deletions pnpm-lock.yaml

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

0 comments on commit b73db7a

Please sign in to comment.