diff --git a/CHANGELOG.md b/CHANGELOG.md index ee579a67..db79b954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,12 @@ All notable changes to this project will be documented in this file. > - Documentation > - Internal +## v8.0.0-beta.1 (2021-02-04) + +#### Bug Fixes + +- add `@angualr/elements` as a peerDependency ([a147ee7](https://github.com/sibiraj-s/ngx-editor/commit/a147ee7)) + ## v8.0.0-beta.0 (2021-02-04) #### Bug Fixes diff --git a/docs/migration-7-8.md b/docs/migration-7-8.md index 9bb1a1ce..852bfe5d 100644 --- a/docs/migration-7-8.md +++ b/docs/migration-7-8.md @@ -70,3 +70,7 @@ const editor = new Editor(); editor.focus.subscribe(() => {}); // no longer exposed editor.blur.subscribe(() => {}); // no longer exposed ``` + +#### Miscellaneous + +- `@angular/elements` is a peerDependency \ No newline at end of file diff --git a/src/package.json b/src/package.json index 48e92194..33db19dd 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "ngx-editor", - "version": "8.0.0-beta.0", + "version": "8.0.0-beta.1", "description": "Rich Text Editor for angular using ProseMirror", "license": "MIT", "repository": "https://github.com/sibiraj-s/ngx-editor.git",