Skip to content

Commit

Permalink
Prepare release v0.1.0 (#53)
Browse files Browse the repository at this point in the history
* prepare release

* remove yarn version
  • Loading branch information
bourdakos1 authored Nov 4, 2021
1 parent 1828c3f commit af4f36d
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 0.1.0 (Nov 4, 2021)

Enhancements and bug fixes

- Update project structure ([#52](https://github.com/cloud-annotations/docusaurus-plugin-openapi/pull/52))
- Update plugin to support Docusaurus 2.0.0 beta ([#51](https://github.com/cloud-annotations/docusaurus-plugin-openapi/pull/51))
4 changes: 2 additions & 2 deletions demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo",
"version": "0.0.0",
"version": "0.1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand All @@ -14,12 +14,12 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"docusaurus-plugin-openapi": "0.0.1",
"@docusaurus/core": "2.0.0-beta.9",
"@docusaurus/preset-classic": "2.0.0-beta.9",
"@mdx-js/react": "^1.6.21",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.1.1",
"docusaurus-plugin-openapi": "^0.1.0",
"file-loader": "^6.2.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.1",
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": "0.0.1",
"version": "0.1.0",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-openapi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus-plugin-openapi",
"description": "OpenAPI plugin for Docusaurus",
"version": "0.0.1",
"version": "0.1.0",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand Down
Empty file modified scripts/changelog.ts
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions scripts/publish.ts
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env ts-node
/* ============================================================================
* Copyright (c) Cloud Annotations
*
Expand Down
4 changes: 1 addition & 3 deletions scripts/version.ts
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env ts-node
/* ============================================================================
* Copyright (c) Cloud Annotations
*
Expand Down Expand Up @@ -74,9 +75,6 @@ function main() {
`lerna version ${nextVersion} --no-git-tag-version --no-push --yes`,
{ stdio: "ignore" }
);
execSync(`yarn version --new-version ${nextVersion} --no-git-tag-version`, {
stdio: "ignore",
});
}

main();
7 changes: 7 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true
},
"include": ["scripts"]
}

0 comments on commit af4f36d

Please sign in to comment.