Skip to content

Commit

Permalink
Prepare release v3.0.0-beta.9 (#773)
Browse files Browse the repository at this point in the history
* Prepare release v3.0.0-beta.9

* fix formatting issue
  • Loading branch information
sserrata committed Mar 22, 2024
1 parent 530d2c8 commit ab5f392
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.0.0-beta.9 (Mar 22, 2024)

High level enhancements

- bugfix

Other enhancements and bug fixes

- ensure correct eval of required properties with allOf ([#771](https://github.com/PaloAltoNetworks/docusaurus-openapi-docs/pull/771))

## 3.0.0-beta.8 (Mar 21, 2024)

High level enhancements
Expand Down
6 changes: 3 additions & 3 deletions demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo",
"version": "3.0.0-beta.8",
"version": "3.0.0-beta.9",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand All @@ -25,8 +25,8 @@
"@docusaurus/plugin-google-gtag": "3.1.1",
"@docusaurus/preset-classic": "3.1.1",
"clsx": "^1.1.1",
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.8",
"docusaurus-theme-openapi-docs": "^3.0.0-beta.8",
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.9",
"docusaurus-theme-openapi-docs": "^3.0.0-beta.9",
"prism-react-renderer": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.0.0-beta.8",
"version": "3.0.0-beta.9",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-openapi-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus-plugin-openapi-docs",
"description": "OpenAPI plugin for Docusaurus.",
"version": "3.0.0-beta.8",
"version": "3.0.0-beta.9",
"license": "MIT",
"keywords": [
"openapi",
Expand Down
4 changes: 2 additions & 2 deletions packages/docusaurus-theme-openapi-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus-theme-openapi-docs",
"description": "OpenAPI theme for Docusaurus.",
"version": "3.0.0-beta.8",
"version": "3.0.0-beta.9",
"license": "MIT",
"keywords": [
"openapi",
Expand Down Expand Up @@ -44,7 +44,7 @@
"clsx": "^1.1.1",
"copy-text-to-clipboard": "^3.1.0",
"crypto-js": "^4.1.1",
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.8",
"docusaurus-plugin-openapi-docs": "^3.0.0-beta.9",
"docusaurus-plugin-sass": "^0.2.3",
"file-saver": "^2.0.5",
"lodash": "^4.17.20",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ function TabList({
parseInt(value) >= 400
? "danger"
: parseInt(value) >= 200 && parseInt(value) < 300
? "success"
: "info",
? "success"
: "info",
{
active: selectedValue === value,
}
Expand Down

0 comments on commit ab5f392

Please sign in to comment.