From 53eb9efd95c00f36ef77fb72d26cf808a604378d Mon Sep 17 00:00:00 2001 From: DJ Date: Mon, 19 Apr 2021 15:41:35 -0400 Subject: [PATCH] chore(publish): latest --- CHANGELOG.md | 17 +++++++++++++++ lerna.json | 2 +- packages/@tinacms/fields/CHANGELOG.md | 13 ++++++++++++ packages/@tinacms/fields/package.json | 8 +++---- packages/@tinacms/react-alerts/CHANGELOG.md | 11 ++++++++++ packages/@tinacms/react-alerts/package.json | 4 ++-- packages/@tinacms/react-forms/CHANGELOG.md | 11 ++++++++++ packages/@tinacms/react-forms/package.json | 6 +++--- packages/@tinacms/react-modals/CHANGELOG.md | 8 +++++++ packages/@tinacms/react-modals/package.json | 4 ++-- packages/@tinacms/react-screens/CHANGELOG.md | 8 +++++++ packages/@tinacms/react-screens/package.json | 4 ++-- packages/@tinacms/react-sidebar/CHANGELOG.md | 11 ++++++++++ packages/@tinacms/react-sidebar/package.json | 10 ++++----- packages/@tinacms/react-toolbar/CHANGELOG.md | 8 +++++++ packages/@tinacms/react-toolbar/package.json | 12 +++++------ packages/@tinacms/styles/CHANGELOG.md | 8 +++++++ packages/@tinacms/styles/package.json | 2 +- packages/demo-cra/CHANGELOG.md | 8 +++++++ packages/demo-cra/package.json | 4 ++-- packages/demo-gatsby/CHANGELOG.md | 8 +++++++ packages/demo-gatsby/package.json | 22 ++++++++++---------- packages/demo-next/CHANGELOG.md | 8 +++++++ packages/demo-next/package.json | 14 ++++++------- packages/gatsby-plugin-tinacms/CHANGELOG.md | 8 +++++++ packages/gatsby-plugin-tinacms/package.json | 4 ++-- packages/gatsby-tinacms-git/CHANGELOG.md | 8 +++++++ packages/gatsby-tinacms-git/package.json | 4 ++-- packages/gatsby-tinacms-json/CHANGELOG.md | 8 +++++++ packages/gatsby-tinacms-json/package.json | 6 +++--- packages/gatsby-tinacms-mdx/CHANGELOG.md | 8 +++++++ packages/gatsby-tinacms-mdx/package.json | 6 +++--- packages/gatsby-tinacms-remark/CHANGELOG.md | 8 +++++++ packages/gatsby-tinacms-remark/package.json | 10 ++++----- packages/next-tinacms-github/CHANGELOG.md | 8 +++++++ packages/next-tinacms-github/package.json | 4 ++-- packages/next-tinacms-json/CHANGELOG.md | 8 +++++++ packages/next-tinacms-json/package.json | 4 ++-- packages/next-tinacms-markdown/CHANGELOG.md | 8 +++++++ packages/next-tinacms-markdown/package.json | 4 ++-- packages/react-tinacms-date/CHANGELOG.md | 8 +++++++ packages/react-tinacms-date/package.json | 4 ++-- packages/react-tinacms-editor/CHANGELOG.md | 11 ++++++++++ packages/react-tinacms-editor/package.json | 12 +++++------ packages/react-tinacms-github/CHANGELOG.md | 8 +++++++ packages/react-tinacms-github/package.json | 12 +++++------ packages/react-tinacms-inline/CHANGELOG.md | 8 +++++++ packages/react-tinacms-inline/package.json | 8 +++---- packages/react-tinacms-strapi/CHANGELOG.md | 8 +++++++ packages/react-tinacms-strapi/package.json | 10 ++++----- packages/tinacms/CHANGELOG.md | 8 +++++++ packages/tinacms/package.json | 18 ++++++++-------- 52 files changed, 333 insertions(+), 99 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 849dfde9f..8c22dd71d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +### Bug Fixes + +- alert container click blocking ([4d3f8ed](https://github.com/tinacms/tinacms/commit/4d3f8ed285a04f6dd75bdc707fbd8bb5a0fe06ba)) +- Changes 30px to 1.5rem ([63e7f71](https://github.com/tinacms/tinacms/commit/63e7f716e7a957577c33dd642df2e68dd7f07888)) +- Check for \$GH_TOKEN when releasing ([c8c8fc9](https://github.com/tinacms/tinacms/commit/c8c8fc988a98299bc62dc3e74f365b509438149f)) +- **@tinacms/fields:** Fixes width for list selects ([2d0f991](https://github.com/tinacms/tinacms/commit/2d0f991d235ac9d9a959326dcad28ad64d0f8fde)) +- do not recreate FormPortal on a ref value change ([7fade9a](https://github.com/tinacms/tinacms/commit/7fade9a7aed39e27f1ec8d440fca25f1b1976e76)) +- Docs & Nuke.sh ([da36b61](https://github.com/tinacms/tinacms/commit/da36b619789dc8caa8041871b11291b64d80fcb7)) +- switched to style prop to set zIndex ([3376dcd](https://github.com/tinacms/tinacms/commit/3376dcdd5023fdc51d217287fdfa9728dc20a668)) +- the same mistake with MenuPortal ([94690b3](https://github.com/tinacms/tinacms/commit/94690b33c210f85b051d090d84c5f675f53ce87c)) + +### Features + +- drag to resize sidebar ([5c6b370](https://github.com/tinacms/tinacms/commit/5c6b3700b0a165a0af600ec3bb21c9f271374fd4)) + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 208f76f2f..bef786e9d 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/@testing/*", "packages/@tinacms/*", "packages/[!@]*"], - "version": "0.40.0-alpha.0", + "version": "0.40.0", "command": { "publish": { "ignoreChanges": ["packages/demo-*", "packages/@testing/**"] diff --git a/packages/@tinacms/fields/CHANGELOG.md b/packages/@tinacms/fields/CHANGELOG.md index 0991067af..878bba75e 100644 --- a/packages/@tinacms/fields/CHANGELOG.md +++ b/packages/@tinacms/fields/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + + +### Bug Fixes + +* Changes 30px to 1.5rem ([63e7f71](https://github.com/tinacms/tinacms/commit/63e7f716e7a957577c33dd642df2e68dd7f07888)) +* **@tinacms/fields:** Fixes width for list selects ([2d0f991](https://github.com/tinacms/tinacms/commit/2d0f991d235ac9d9a959326dcad28ad64d0f8fde)) +* switched to style prop to set zIndex ([3376dcd](https://github.com/tinacms/tinacms/commit/3376dcdd5023fdc51d217287fdfa9728dc20a668)) + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/fields/package.json b/packages/@tinacms/fields/package.json index 953c0fbb2..df397e628 100644 --- a/packages/@tinacms/fields/package.json +++ b/packages/@tinacms/fields/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/fields", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "license": "Apache-2.0", @@ -37,10 +37,10 @@ "@tinacms/forms": "^0.39.0", "@tinacms/icons": "^0.39.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", + "@tinacms/react-modals": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "@types/codemirror": "^0.0.71", "@types/color-string": "^1.5.0", "@types/lodash.debounce": "^4.0.6", diff --git a/packages/@tinacms/react-alerts/CHANGELOG.md b/packages/@tinacms/react-alerts/CHANGELOG.md index ade26c72e..654a240d7 100644 --- a/packages/@tinacms/react-alerts/CHANGELOG.md +++ b/packages/@tinacms/react-alerts/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + + +### Bug Fixes + +* alert container click blocking ([4d3f8ed](https://github.com/tinacms/tinacms/commit/4d3f8ed285a04f6dd75bdc707fbd8bb5a0fe06ba)) + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/react-alerts/package.json b/packages/@tinacms/react-alerts/package.json index 4a98fe021..a5268eca4 100644 --- a/packages/@tinacms/react-alerts/package.json +++ b/packages/@tinacms/react-alerts/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/react-alerts", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "main": "build/index.js", "typings": "build/index.d.ts", @@ -24,7 +24,7 @@ "@tinacms/icons": "^0.39.0", "@tinacms/react-core": "^0.39.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0" + "@tinacms/styles": "^0.40.0" }, "peerDependencies": { "@tinacms/alerts": ">=0.1", diff --git a/packages/@tinacms/react-forms/CHANGELOG.md b/packages/@tinacms/react-forms/CHANGELOG.md index 3abaedf56..bc016976d 100644 --- a/packages/@tinacms/react-forms/CHANGELOG.md +++ b/packages/@tinacms/react-forms/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + + +### Bug Fixes + +* switched to style prop to set zIndex ([3376dcd](https://github.com/tinacms/tinacms/commit/3376dcdd5023fdc51d217287fdfa9728dc20a668)) + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/react-forms/package.json b/packages/@tinacms/react-forms/package.json index 91f7a1bab..be1bd8747 100644 --- a/packages/@tinacms/react-forms/package.json +++ b/packages/@tinacms/react-forms/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/react-forms", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "main": "build/index.js", "typings": "build/index.d.ts", @@ -28,9 +28,9 @@ "@tinacms/forms": "^0.39.0", "@tinacms/icons": "^0.39.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", + "@tinacms/react-modals": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "@types/react-beautiful-dnd": "^11.0.3" }, "peerDependencies": { diff --git a/packages/@tinacms/react-modals/CHANGELOG.md b/packages/@tinacms/react-modals/CHANGELOG.md index 13f930cce..ad5bb0585 100644 --- a/packages/@tinacms/react-modals/CHANGELOG.md +++ b/packages/@tinacms/react-modals/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package @tinacms/react-modals + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/react-modals/package.json b/packages/@tinacms/react-modals/package.json index 470e7347e..c33b1cdd5 100644 --- a/packages/@tinacms/react-modals/package.json +++ b/packages/@tinacms/react-modals/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/react-modals", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "main": "build/index.js", "typings": "build/index.d.ts", @@ -23,7 +23,7 @@ "@tinacms/icons": "^0.39.0", "@tinacms/react-core": "^0.39.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0" + "@tinacms/styles": "^0.40.0" }, "peerDependencies": { "@tinacms/icons": ">=0.7", diff --git a/packages/@tinacms/react-screens/CHANGELOG.md b/packages/@tinacms/react-screens/CHANGELOG.md index d065e0304..35f8a4e65 100644 --- a/packages/@tinacms/react-screens/CHANGELOG.md +++ b/packages/@tinacms/react-screens/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package @tinacms/react-screens + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/react-screens/package.json b/packages/@tinacms/react-screens/package.json index bd3e84adc..026ef8e43 100644 --- a/packages/@tinacms/react-screens/package.json +++ b/packages/@tinacms/react-screens/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/react-screens", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "devDependencies": { "@tinacms/core": "^0.39.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", + "@tinacms/react-modals": "^0.40.0", "@tinacms/scripts": "^0.39.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" diff --git a/packages/@tinacms/react-sidebar/CHANGELOG.md b/packages/@tinacms/react-sidebar/CHANGELOG.md index ae422c25f..ad25d4ea9 100644 --- a/packages/@tinacms/react-sidebar/CHANGELOG.md +++ b/packages/@tinacms/react-sidebar/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + + +### Features + +* drag to resize sidebar ([5c6b370](https://github.com/tinacms/tinacms/commit/5c6b3700b0a165a0af600ec3bb21c9f271374fd4)) + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/react-sidebar/package.json b/packages/@tinacms/react-sidebar/package.json index 867efecf7..072eefd01 100644 --- a/packages/@tinacms/react-sidebar/package.json +++ b/packages/@tinacms/react-sidebar/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/react-sidebar", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "license": "Apache-2.0", @@ -37,11 +37,11 @@ "@tinacms/form-builder": "^0.39.0", "@tinacms/icons": "^0.39.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", - "@tinacms/react-screens": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", + "@tinacms/react-modals": "^0.40.0", + "@tinacms/react-screens": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0" + "@tinacms/styles": "^0.40.0" }, "peerDependencies": { "@tinacms/form-builder": ">=0.3", diff --git a/packages/@tinacms/react-toolbar/CHANGELOG.md b/packages/@tinacms/react-toolbar/CHANGELOG.md index 111e9d916..8ddd0888e 100644 --- a/packages/@tinacms/react-toolbar/CHANGELOG.md +++ b/packages/@tinacms/react-toolbar/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package @tinacms/react-toolbar + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/react-toolbar/package.json b/packages/@tinacms/react-toolbar/package.json index 2924b9601..f42aae8d2 100644 --- a/packages/@tinacms/react-toolbar/package.json +++ b/packages/@tinacms/react-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/react-toolbar", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "license": "Apache-2.0", @@ -30,7 +30,7 @@ }, "dependencies": { "@tinacms/core": "^0.39.0", - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/forms": "^0.39.0", "react-dismissible": "^1.3.0" }, @@ -38,11 +38,11 @@ "@tinacms/form-builder": "^0.39.0", "@tinacms/icons": "^0.39.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", - "@tinacms/react-screens": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", + "@tinacms/react-modals": "^0.40.0", + "@tinacms/react-screens": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0" + "@tinacms/styles": "^0.40.0" }, "peerDependencies": { "@tinacms/form-builder": ">=0.3", diff --git a/packages/@tinacms/styles/CHANGELOG.md b/packages/@tinacms/styles/CHANGELOG.md index 2e731dfc6..ec0002ae0 100644 --- a/packages/@tinacms/styles/CHANGELOG.md +++ b/packages/@tinacms/styles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package @tinacms/styles + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/@tinacms/styles/package.json b/packages/@tinacms/styles/package.json index c4273fcc7..2918a4de0 100644 --- a/packages/@tinacms/styles/package.json +++ b/packages/@tinacms/styles/package.json @@ -1,6 +1,6 @@ { "name": "@tinacms/styles", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "license": "Apache-2.0", diff --git a/packages/demo-cra/CHANGELOG.md b/packages/demo-cra/CHANGELOG.md index 58f4c0545..bb3aec91d 100644 --- a/packages/demo-cra/CHANGELOG.md +++ b/packages/demo-cra/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package demo-cra + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/demo-cra/package.json b/packages/demo-cra/package.json index bb9e42abd..b25e9ba7f 100644 --- a/packages/demo-cra/package.json +++ b/packages/demo-cra/package.json @@ -1,9 +1,9 @@ { "name": "demo-cra", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "private": true, "dependencies": { - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "devDependencies": { "@types/node": "12.6.8", diff --git a/packages/demo-gatsby/CHANGELOG.md b/packages/demo-gatsby/CHANGELOG.md index 060b050cb..9904b85e9 100644 --- a/packages/demo-gatsby/CHANGELOG.md +++ b/packages/demo-gatsby/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/gatsbyjs/gatsby-starter-blog/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package demo-gatsby + + + + + # [0.39.0](https://github.com/gatsbyjs/gatsby-starter-blog/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/demo-gatsby/package.json b/packages/demo-gatsby/package.json index a3e2a027d..db1cc5fc6 100644 --- a/packages/demo-gatsby/package.json +++ b/packages/demo-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "demo-gatsby", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "private": true, "description": "A starter for a blog powered by Gatsby and Markdown", "author": "Kyle Mathews ", @@ -11,10 +11,10 @@ "@mdx-js/mdx": "^1.5.5", "@mdx-js/react": "^1.5.5", "@tinacms/core": "^0.39.0", - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/form-builder": "^0.39.0", "@tinacms/icons": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "autosize": "^4.0.2", "gatsby": "^2.28.2", "gatsby-image": "^2.2.6", @@ -25,7 +25,7 @@ "gatsby-plugin-offline": "^2.2.4", "gatsby-plugin-react-helmet": "^3.1.2", "gatsby-plugin-sharp": "^2.2.9", - "gatsby-plugin-tinacms": "^0.40.0-alpha.0", + "gatsby-plugin-tinacms": "^0.40.0", "gatsby-plugin-typography": "^2.3.2", "gatsby-remark-copy-linked-files": "^2.1.3", "gatsby-remark-images": "^3.1.7", @@ -33,10 +33,10 @@ "gatsby-remark-responsive-iframe": "^2.2.4", "gatsby-remark-smartypants": "^2.1.2", "gatsby-source-filesystem": "^2.1.6", - "gatsby-tinacms-git": "^0.40.0-alpha.0", - "gatsby-tinacms-json": "^0.40.0-alpha.0", - "gatsby-tinacms-mdx": "^0.40.0-alpha.0", - "gatsby-tinacms-remark": "^0.40.0-alpha.0", + "gatsby-tinacms-git": "^0.40.0", + "gatsby-tinacms-json": "^0.40.0", + "gatsby-tinacms-mdx": "^0.40.0", + "gatsby-tinacms-remark": "^0.40.0", "gatsby-tinacms-teams": "^0.39.0", "gatsby-transformer-json": "^2.2.2", "gatsby-transformer-remark": "^2.6.9", @@ -45,10 +45,10 @@ "prismjs": "^1.16.0", "react-helmet": "^5.2.1", "react-textarea-autosize": "7.1.2", - "react-tinacms-editor": "^0.40.0-alpha.0", - "react-tinacms-inline": "^0.40.0-alpha.0", + "react-tinacms-editor": "^0.40.0", + "react-tinacms-inline": "^0.40.0", "react-typography": "^0.16.19", - "tinacms": "^0.40.0-alpha.0", + "tinacms": "^0.40.0", "typeface-merriweather": "0.0.72", "typeface-montserrat": "0.0.75", "typography": "^0.16.19", diff --git a/packages/demo-next/CHANGELOG.md b/packages/demo-next/CHANGELOG.md index 977aec6b7..b5033359c 100644 --- a/packages/demo-next/CHANGELOG.md +++ b/packages/demo-next/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/kendallstrautman/nextjs-blog-starter/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package nextjs-blog-starter + + + + + # [0.39.0](https://github.com/kendallstrautman/nextjs-blog-starter/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/demo-next/package.json b/packages/demo-next/package.json index 74786e1bb..373efdedf 100644 --- a/packages/demo-next/package.json +++ b/packages/demo-next/package.json @@ -3,7 +3,7 @@ "private": true, "description": "A simple starter to get up and developing quickly with Next.js", "license": "Apache-2.0", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "author": "Kendall Strautman", "scripts": { "dev-next": "next", @@ -16,20 +16,20 @@ "@tinacms/api-git": "^0.39.0", "@tinacms/form-builder": "^0.39.0", "@tinacms/git-client": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "cors": "^2.8.5", "dotenv": "^8.2.0", "express": "^4.17.1", "loader": "^2.1.1", "next": "^9.2.0", - "next-tinacms-json": "^0.40.0-alpha.0", - "next-tinacms-markdown": "^0.40.0-alpha.0", + "next-tinacms-json": "^0.40.0", + "next-tinacms-markdown": "^0.40.0", "prop-types": "^15.7.2", "raw-loader": "^3.0.0", "react-markdown": "^4.1.0", - "react-tinacms-editor": "^0.40.0-alpha.0", - "react-tinacms-inline": "^0.40.0-alpha.0", - "tinacms": "^0.40.0-alpha.0", + "react-tinacms-editor": "^0.40.0", + "react-tinacms-inline": "^0.40.0", + "tinacms": "^0.40.0", "webpack": "^4.41.5" }, "devDependencies": { diff --git a/packages/gatsby-plugin-tinacms/CHANGELOG.md b/packages/gatsby-plugin-tinacms/CHANGELOG.md index 91afb380e..251cb9823 100644 --- a/packages/gatsby-plugin-tinacms/CHANGELOG.md +++ b/packages/gatsby-plugin-tinacms/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package gatsby-plugin-tinacms + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/gatsby-plugin-tinacms/package.json b/packages/gatsby-plugin-tinacms/package.json index 6f82e0a2c..21115a881 100644 --- a/packages/gatsby-plugin-tinacms/package.json +++ b/packages/gatsby-plugin-tinacms/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-tinacms", "main": "index.js", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "files": [ "index.js", @@ -33,7 +33,7 @@ "docs": "npx typedoc" }, "dependencies": { - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" } diff --git a/packages/gatsby-tinacms-git/CHANGELOG.md b/packages/gatsby-tinacms-git/CHANGELOG.md index acc08d6a4..4dfed559a 100644 --- a/packages/gatsby-tinacms-git/CHANGELOG.md +++ b/packages/gatsby-tinacms-git/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package gatsby-tinacms-git + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/gatsby-tinacms-git/package.json b/packages/gatsby-tinacms-git/package.json index 9512b83ac..60c3c96ce 100644 --- a/packages/gatsby-tinacms-git/package.json +++ b/packages/gatsby-tinacms-git/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-tinacms-git", "main": "index.js", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "files": [ "index.js", @@ -45,7 +45,7 @@ "@tinacms/git-client": "^0.39.0" }, "devDependencies": { - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" } diff --git a/packages/gatsby-tinacms-json/CHANGELOG.md b/packages/gatsby-tinacms-json/CHANGELOG.md index 39df1ddc2..b12eb1a75 100644 --- a/packages/gatsby-tinacms-json/CHANGELOG.md +++ b/packages/gatsby-tinacms-json/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package gatsby-tinacms-json + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/gatsby-tinacms-json/package.json b/packages/gatsby-tinacms-json/package.json index 69cc4e50d..be38e31e3 100644 --- a/packages/gatsby-tinacms-json/package.json +++ b/packages/gatsby-tinacms-json/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-tinacms-json", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "index.js", "types": "src/index.d.ts", "license": "Apache-2.0", @@ -33,8 +33,8 @@ }, "devDependencies": { "@tinacms/scripts": "^0.39.0", - "gatsby-tinacms-git": "^0.40.0-alpha.0", - "tinacms": "^0.40.0-alpha.0" + "gatsby-tinacms-git": "^0.40.0", + "tinacms": "^0.40.0" }, "dependencies": { "slash": "^3.0.0" diff --git a/packages/gatsby-tinacms-mdx/CHANGELOG.md b/packages/gatsby-tinacms-mdx/CHANGELOG.md index 947eb6043..44f1d6880 100644 --- a/packages/gatsby-tinacms-mdx/CHANGELOG.md +++ b/packages/gatsby-tinacms-mdx/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package gatsby-tinacms-mdx + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/gatsby-tinacms-mdx/package.json b/packages/gatsby-tinacms-mdx/package.json index 323e893a4..11c437d3c 100644 --- a/packages/gatsby-tinacms-mdx/package.json +++ b/packages/gatsby-tinacms-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-tinacms-mdx", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "index.js", "types": "src/index.d.ts", "license": "Apache-2.0", @@ -33,8 +33,8 @@ }, "devDependencies": { "@tinacms/scripts": "^0.39.0", - "gatsby-tinacms-git": "^0.40.0-alpha.0", - "tinacms": "^0.40.0-alpha.0" + "gatsby-tinacms-git": "^0.40.0", + "tinacms": "^0.40.0" }, "dependencies": { "@types/js-yaml": "^3.12.3", diff --git a/packages/gatsby-tinacms-remark/CHANGELOG.md b/packages/gatsby-tinacms-remark/CHANGELOG.md index 80e9a585b..edb497451 100644 --- a/packages/gatsby-tinacms-remark/CHANGELOG.md +++ b/packages/gatsby-tinacms-remark/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package gatsby-tinacms-remark + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/gatsby-tinacms-remark/package.json b/packages/gatsby-tinacms-remark/package.json index d5196031f..ca171630b 100644 --- a/packages/gatsby-tinacms-remark/package.json +++ b/packages/gatsby-tinacms-remark/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-tinacms-remark", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "index.js", "types": "src/index.d.ts", "license": "Apache-2.0", @@ -35,15 +35,15 @@ }, "devDependencies": { "@tinacms/scripts": "^0.39.0", - "gatsby-tinacms-git": "^0.40.0-alpha.0", - "tinacms": "^0.40.0-alpha.0" + "gatsby-tinacms-git": "^0.40.0", + "tinacms": "^0.40.0" }, "dependencies": { "@types/js-yaml": "^3.12.3", "gray-matter": "^4.0.2", "js-yaml": "^3.13.1", - "react-tinacms-editor": "^0.40.0-alpha.0", - "react-tinacms-inline": "^0.40.0-alpha.0", + "react-tinacms-editor": "^0.40.0", + "react-tinacms-inline": "^0.40.0", "slash": "^3.0.0" }, "peerDependencies": { diff --git a/packages/next-tinacms-github/CHANGELOG.md b/packages/next-tinacms-github/CHANGELOG.md index f08620fe5..6756966cb 100644 --- a/packages/next-tinacms-github/CHANGELOG.md +++ b/packages/next-tinacms-github/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package next-tinacms-github + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/next-tinacms-github/package.json b/packages/next-tinacms-github/package.json index 74cea3f74..d85443f9e 100644 --- a/packages/next-tinacms-github/package.json +++ b/packages/next-tinacms-github/package.json @@ -1,6 +1,6 @@ { "name": "next-tinacms-github", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "description": "", "main": "dist/index.js", "types": "dist/src/index.d.ts", @@ -26,7 +26,7 @@ "crypto-js": "^4.0.0", "gray-matter": "4.0.2", "qs": "6.9.3", - "react-tinacms-github": "^0.40.0-alpha.0", + "react-tinacms-github": "^0.40.0", "uuid": "^8.1.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" diff --git a/packages/next-tinacms-json/CHANGELOG.md b/packages/next-tinacms-json/CHANGELOG.md index bc81bc94f..eb83aa4f2 100644 --- a/packages/next-tinacms-json/CHANGELOG.md +++ b/packages/next-tinacms-json/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package next-tinacms-json + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/next-tinacms-json/package.json b/packages/next-tinacms-json/package.json index cba4137e3..95ed46734 100644 --- a/packages/next-tinacms-json/package.json +++ b/packages/next-tinacms-json/package.json @@ -1,6 +1,6 @@ { "name": "next-tinacms-json", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "author": "Nolan Phillips", "main": "dist/index.js", @@ -27,7 +27,7 @@ }, "devDependencies": { "@tinacms/scripts": "^0.39.0", - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" } diff --git a/packages/next-tinacms-markdown/CHANGELOG.md b/packages/next-tinacms-markdown/CHANGELOG.md index 7f74fe769..9a1bde29c 100644 --- a/packages/next-tinacms-markdown/CHANGELOG.md +++ b/packages/next-tinacms-markdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package next-tinacms-markdown + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/next-tinacms-markdown/package.json b/packages/next-tinacms-markdown/package.json index cb061f797..dace3554c 100644 --- a/packages/next-tinacms-markdown/package.json +++ b/packages/next-tinacms-markdown/package.json @@ -1,6 +1,6 @@ { "name": "next-tinacms-markdown", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "author": "Kendall Strautman", "main": "dist/index.js", @@ -32,7 +32,7 @@ }, "devDependencies": { "@tinacms/scripts": "^0.39.0", - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" } diff --git a/packages/react-tinacms-date/CHANGELOG.md b/packages/react-tinacms-date/CHANGELOG.md index 98d817d3c..ff8d13fb9 100644 --- a/packages/react-tinacms-date/CHANGELOG.md +++ b/packages/react-tinacms-date/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package react-tinacms-date + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/react-tinacms-date/package.json b/packages/react-tinacms-date/package.json index a10346d5c..0ddc4b829 100644 --- a/packages/react-tinacms-date/package.json +++ b/packages/react-tinacms-date/package.json @@ -1,6 +1,6 @@ { "name": "react-tinacms-date", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "license": "Apache-2.0", @@ -31,7 +31,7 @@ "react-datetime": "^2.16.3" }, "devDependencies": { - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/scripts": "^0.39.0" }, "peerDependencies": { diff --git a/packages/react-tinacms-editor/CHANGELOG.md b/packages/react-tinacms-editor/CHANGELOG.md index 2c0063ec9..a5e8a4c61 100644 --- a/packages/react-tinacms-editor/CHANGELOG.md +++ b/packages/react-tinacms-editor/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + + +### Bug Fixes + +* the same mistake with MenuPortal ([94690b3](https://github.com/tinacms/tinacms/commit/94690b33c210f85b051d090d84c5f675f53ce87c)) + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/react-tinacms-editor/package.json b/packages/react-tinacms-editor/package.json index 3bb0217ee..817ab94e3 100644 --- a/packages/react-tinacms-editor/package.json +++ b/packages/react-tinacms-editor/package.json @@ -1,6 +1,6 @@ { "name": "react-tinacms-editor", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "main": "dist/index.js", "module": "dist/react-tinacms-editor.esm.js", @@ -20,11 +20,11 @@ "@storybook/addon-info": "^5.1.9", "@storybook/react": "^5.3.19", "@tinacms/core": "^0.39.0", - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/icons": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "@types/codemirror": "^0.0.71", "@types/color-string": "^1.5.0", "@types/lodash.debounce": "^4.0.6", @@ -47,8 +47,8 @@ "eol": "^0.9.0", "react-docgen-typescript-loader": "^3.1.0", "react-docgen-typescript-webpack-plugin": "^1.1.0", - "react-tinacms-inline": "^0.40.0-alpha.0", - "tinacms": "^0.40.0-alpha.0" + "react-tinacms-inline": "^0.40.0", + "tinacms": "^0.40.0" }, "dependencies": { "codemirror": "^5.42.2", diff --git a/packages/react-tinacms-github/CHANGELOG.md b/packages/react-tinacms-github/CHANGELOG.md index 5585986d6..b501bc03e 100644 --- a/packages/react-tinacms-github/CHANGELOG.md +++ b/packages/react-tinacms-github/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package react-tinacms-github + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/react-tinacms-github/package.json b/packages/react-tinacms-github/package.json index 18d2802d3..39b2b5757 100644 --- a/packages/react-tinacms-github/package.json +++ b/packages/react-tinacms-github/package.json @@ -1,6 +1,6 @@ { "name": "react-tinacms-github", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "description": "", "main": "dist/index.js", "types": "dist/src/index.d.ts", @@ -26,21 +26,21 @@ "devDependencies": { "@tinacms/alerts": "^0.39.0", "@tinacms/core": "^0.39.0", - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/forms": "^0.39.0", "@tinacms/icons": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "@types/js-cookie": "^2.2.5", "final-form": "^4.18.7", "styled-components": ">=4.1", - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "dependencies": { "btoa": "^1.2.1", "js-cookie": "^2.2.1", - "next-tinacms-markdown": "^0.40.0-alpha.0" + "next-tinacms-markdown": "^0.40.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" } diff --git a/packages/react-tinacms-inline/CHANGELOG.md b/packages/react-tinacms-inline/CHANGELOG.md index 00fc080e6..9bacd1771 100644 --- a/packages/react-tinacms-inline/CHANGELOG.md +++ b/packages/react-tinacms-inline/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package react-tinacms-inline + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/react-tinacms-inline/package.json b/packages/react-tinacms-inline/package.json index 95de55315..b51afd6d3 100644 --- a/packages/react-tinacms-inline/package.json +++ b/packages/react-tinacms-inline/package.json @@ -1,6 +1,6 @@ { "name": "react-tinacms-inline", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "license": "Apache-2.0", "main": "dist/index.js", "typings": "dist/src/index.d.ts", @@ -29,13 +29,13 @@ "devDependencies": { "@testing-library/react": "^11.1.2", "@tinacms/icons": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "jest": "^26.6.3", "react-dropzone": "10.1.8", "react-tinacms-editor": "^0.4.0", - "tinacms": "^0.40.0-alpha.0" + "tinacms": "^0.40.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" } diff --git a/packages/react-tinacms-strapi/CHANGELOG.md b/packages/react-tinacms-strapi/CHANGELOG.md index 65fe992e0..2ffb82162 100644 --- a/packages/react-tinacms-strapi/CHANGELOG.md +++ b/packages/react-tinacms-strapi/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package react-tinacms-strapi + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/react-tinacms-strapi/package.json b/packages/react-tinacms-strapi/package.json index 82975ff54..54208e4e4 100644 --- a/packages/react-tinacms-strapi/package.json +++ b/packages/react-tinacms-strapi/package.json @@ -1,6 +1,6 @@ { "name": "react-tinacms-strapi", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "description": "", "main": "build/index.js", "scripts": { @@ -44,13 +44,13 @@ }, "devDependencies": { "@tinacms/core": "^0.39.0", - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/media": "^0.39.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", + "@tinacms/react-modals": "^0.40.0", "@tinacms/scripts": "^0.39.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/styles": "^0.40.0", "react-final-form": "^6.3.0" }, "gitHead": "87c8f9a3ca2c5bf41e1a4c54a73759d12a7c5bfd" diff --git a/packages/tinacms/CHANGELOG.md b/packages/tinacms/CHANGELOG.md index 7e03fad61..b76edb3a9 100644 --- a/packages/tinacms/CHANGELOG.md +++ b/packages/tinacms/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.40.0](https://github.com/tinacms/tinacms/compare/v0.39.0...v0.40.0) (2021-04-19) + +**Note:** Version bump only for package tinacms + + + + + # [0.39.0](https://github.com/tinacms/tinacms/compare/v0.38.0...v0.39.0) (2021-03-30) diff --git a/packages/tinacms/package.json b/packages/tinacms/package.json index 18ae5d1bd..4b658b8bf 100644 --- a/packages/tinacms/package.json +++ b/packages/tinacms/package.json @@ -1,6 +1,6 @@ { "name": "tinacms", - "version": "0.40.0-alpha.0", + "version": "0.40.0", "main": "build/index.js", "types": "build/index.d.ts", "keywords": [ @@ -35,18 +35,18 @@ "dependencies": { "@tinacms/alerts": "^0.39.0", "@tinacms/core": "^0.39.0", - "@tinacms/fields": "^0.40.0-alpha.0", + "@tinacms/fields": "^0.40.0", "@tinacms/form-builder": "^0.39.0", "@tinacms/forms": "^0.39.0", "@tinacms/icons": "^0.39.0", - "@tinacms/react-alerts": "^0.40.0-alpha.0", + "@tinacms/react-alerts": "^0.40.0", "@tinacms/react-core": "^0.39.0", - "@tinacms/react-forms": "^0.40.0-alpha.0", - "@tinacms/react-modals": "^0.40.0-alpha.0", - "@tinacms/react-screens": "^0.40.0-alpha.0", - "@tinacms/react-sidebar": "^0.40.0-alpha.0", - "@tinacms/react-toolbar": "^0.40.0-alpha.0", - "@tinacms/styles": "^0.40.0-alpha.0", + "@tinacms/react-forms": "^0.40.0", + "@tinacms/react-modals": "^0.40.0", + "@tinacms/react-screens": "^0.40.0", + "@tinacms/react-sidebar": "^0.40.0", + "@tinacms/react-toolbar": "^0.40.0", + "@tinacms/styles": "^0.40.0", "react-dropzone": "^11.1.0" }, "peerDependencies": {