From c62e28f1ba077c4ff7750a2c4fda0917cfa14808 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Aug 2023 18:19:14 -0400 Subject: [PATCH] Version Packages (#102) Co-authored-by: github-actions[bot] --- .changeset/few-spiders-float.md | 5 ----- .changeset/fifty-parrots-doubt.md | 5 ----- .changeset/olive-years-tan.md | 6 ------ CHANGELOG.md | 9 +++++++++ package.json | 2 +- 5 files changed, 10 insertions(+), 17 deletions(-) delete mode 100644 .changeset/few-spiders-float.md delete mode 100644 .changeset/fifty-parrots-doubt.md delete mode 100644 .changeset/olive-years-tan.md diff --git a/.changeset/few-spiders-float.md b/.changeset/few-spiders-float.md deleted file mode 100644 index 22cba5c5..00000000 --- a/.changeset/few-spiders-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"rhino-editor": patch ---- - -fix: add `addExtensions` api to editor diff --git a/.changeset/fifty-parrots-doubt.md b/.changeset/fifty-parrots-doubt.md deleted file mode 100644 index 5ac170c0..00000000 --- a/.changeset/fifty-parrots-doubt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"rhino-editor": patch ---- - -starterKitOptions and extensions no longer implement getters / setters, and are now direct instance variables diff --git a/.changeset/olive-years-tan.md b/.changeset/olive-years-tan.md deleted file mode 100644 index f6917b0f..00000000 --- a/.changeset/olive-years-tan.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"rhino-editor": patch ---- - -- Dependencies: remove unnecessary `@tiptap/extensions-text-align` dependency. -- Dependencies: downgrade and pin prosemirror-view from `1.31.2` to `1.28.2` to fix and error with adding plugins. diff --git a/CHANGELOG.md b/CHANGELOG.md index 64028284..3f38fa9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.7.1 + +### Patch Changes + +- f51bf37: fix: add `addExtensions` api to editor +- f51bf37: starterKitOptions and extensions no longer implement getters / setters, and are now direct instance variables +- f51bf37: - Dependencies: remove unnecessary `@tiptap/extensions-text-align` dependency. + - Dependencies: downgrade and pin prosemirror-view from `1.31.2` to `1.28.2` to fix and error with adding plugins. + ## 0.7.0 ### Minor Changes diff --git a/package.json b/package.json index 4096e9eb..c526523b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rhino-editor", - "version": "0.7.0", + "version": "0.7.1", "description": "A custom element wrapped rich text editor", "type": "module", "main": "exports/index.js",