Skip to content

Commit

Permalink
Packages ready to publish (#887)
Browse files Browse the repository at this point in the history
Publish new versions

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
danez-bot and github-actions[bot] committed Jan 8, 2024
1 parent d99cf4e commit fd30cbe
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .changeset/slimy-donkeys-bow.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/react-docgen-cli/CHANGELOG.md
@@ -1,5 +1,12 @@
# Release Notes

## 2.0.2

### Patch Changes

- Updated dependencies [[`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5)]:
- react-docgen@7.0.2

## 2.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-docgen-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@react-docgen/cli",
"version": "2.0.1",
"version": "2.0.2",
"description": "A CLI to extract information from React components for documentation generation.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -35,7 +35,7 @@
"commander": "11.1.0",
"debug": "4.3.4",
"fast-glob": "3.3.2",
"react-docgen": "workspace:7.0.1",
"react-docgen": "workspace:7.0.2",
"slash": "5.1.0"
},
"devDependencies": {
Expand Down
14 changes: 10 additions & 4 deletions packages/react-docgen/CHANGELOG.md
@@ -1,5 +1,11 @@
# Release Notes

## 7.0.2

### Patch Changes

- [`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5) Thanks [@danez](https://github.com/danez)! - Fix handling of template literals

## 7.0.1

### Patch Changes
Expand Down Expand Up @@ -329,7 +335,7 @@
allows multiple resolvers to be chained.

```ts
import { builtinResolvers } from 'react-docgen';
import { builtinResolvers } from "react-docgen";

const { ChainResolver } = builtinResolvers;
const resolver = new ChainResolver([resolver1, resolver2], {
Expand Down Expand Up @@ -358,7 +364,7 @@
addition to functions.

```ts
import type { ResolverClass, ResolverFunction } from 'react-docgen';
import type { ResolverClass, ResolverFunction } from "react-docgen";

// This was the only option until now
const functionResolver: ResolverFunction = (file: FileState) => {
Expand Down Expand Up @@ -613,7 +619,7 @@
chained.

```ts
import { builtinResolvers } from 'react-docgen';
import { builtinResolvers } from "react-docgen";

const { ChainResolver } = builtinResolvers;
const resolver = new ChainResolver([resolver1, resolver2], {
Expand All @@ -624,7 +630,7 @@
- 80e4c74: Allow resolvers to be classes in addition to functions.

```ts
import type { ResolverClass, ResolverFunction } from 'react-docgen';
import type { ResolverClass, ResolverFunction } from "react-docgen";

// This was the only option until now
const functionResolver: ResolverFunction = (file: FileState) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-docgen/package.json
@@ -1,6 +1,6 @@
{
"name": "react-docgen",
"version": "7.0.1",
"version": "7.0.2",
"description": "A library to extract information from React components for documentation generation.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/website/package.json
Expand Up @@ -27,7 +27,7 @@
"postcss": "8.4.33",
"postcss-lightningcss": "1.0.0",
"react": "18.2.0",
"react-docgen": "workspace:7.0.1",
"react-docgen": "workspace:7.0.2",
"react-dom": "18.2.0",
"tailwindcss": "3.4.1"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/website/src/pages/docs/release-notes/cli.mdx
@@ -1,5 +1,12 @@
# Release Notes

## 2.0.2

### Patch Changes

- Updated dependencies [[`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5)]:
- react-docgen@7.0.2

## 2.0.1

### Patch Changes
Expand Down
14 changes: 10 additions & 4 deletions packages/website/src/pages/docs/release-notes/react-docgen.mdx
@@ -1,5 +1,11 @@
# Release Notes

## 7.0.2

### Patch Changes

- [`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5) Thanks [@danez](https://github.com/danez)! - Fix handling of template literals

## 7.0.1

### Patch Changes
Expand Down Expand Up @@ -329,7 +335,7 @@
allows multiple resolvers to be chained.

```ts
import { builtinResolvers } from 'react-docgen';
import { builtinResolvers } from "react-docgen";

const { ChainResolver } = builtinResolvers;
const resolver = new ChainResolver([resolver1, resolver2], {
Expand Down Expand Up @@ -358,7 +364,7 @@
addition to functions.

```ts
import type { ResolverClass, ResolverFunction } from 'react-docgen';
import type { ResolverClass, ResolverFunction } from "react-docgen";

// This was the only option until now
const functionResolver: ResolverFunction = (file: FileState) => {
Expand Down Expand Up @@ -613,7 +619,7 @@
chained.

```ts
import { builtinResolvers } from 'react-docgen';
import { builtinResolvers } from "react-docgen";

const { ChainResolver } = builtinResolvers;
const resolver = new ChainResolver([resolver1, resolver2], {
Expand All @@ -624,7 +630,7 @@
- 80e4c74: Allow resolvers to be classes in addition to functions.

```ts
import type { ResolverClass, ResolverFunction } from 'react-docgen';
import type { ResolverClass, ResolverFunction } from "react-docgen";

// This was the only option until now
const functionResolver: ResolverFunction = (file: FileState) => {
Expand Down
4 changes: 2 additions & 2 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 fd30cbe

Please sign in to comment.