diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..c336cc425 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [2.0.0] - 2021-07-20 + +### Changed +- Package renamed to @automattic/isolated-block-editor diff --git a/README.md b/README.md index bec80c8db..e9f3550c0 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ import 'isolated-block-editor/build-browser/core.css'; The module is currently only available on Github and can be added with: -`npm install "github:automattic/isolated-block-editor#1.2.0" --save` (where `1.2.0` is the version you want to use) +`npm install @automattic/isolated-block-editor@1.2.0" --save` (where `1.2.0` is the version you want to use) ## Future diff --git a/package.json b/package.json index e9ee1db35..1dead9b2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "isolated-block-editor", - "version": "1.3.0", + "name": "@automattic/isolated-block-editor", + "version": "2.0.0", "description": "Repackages Gutenberg's editor playground as multi-instance editor.", "main": "build/index.js", "module": "build-module/index.js", @@ -133,7 +133,10 @@ "assets": [ "dist/isolated-block-editor.zip" ] - }, - "npm": false + } + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" } }