diff --git a/CHANGELOG.md b/CHANGELOG.md index bdcd610..dabde16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v0.7.0](https://github.com/cudr/slate-collaborative/compare/v0.7.0...v0.7.0) + +> 27 October 2020 + +- defensive code for when the document sometimes isn't there on server restarts. [`#26`](https://github.com/cudr/slate-collaborative/pull/26) +- fix: socket io namespace message broadcast [`ab3c36a`](https://github.com/cudr/slate-collaborative/commit/ab3c36ab7dd7f24059c5d0864735c5892df98028) + #### [v0.7.0](https://github.com/cudr/slate-collaborative/compare/v0.6.7...v0.7.0) -> 1 July 2020 +> 2 July 2020 - Preserve external history option [`#22`](https://github.com/cudr/slate-collaborative/pull/22) - Generate auto-changelog [`#21`](https://github.com/cudr/slate-collaborative/pull/21) diff --git a/lerna.json b/lerna.json index 14d0906..d67ee58 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.7.1", - "version": "0.7.0", + "version": "0.7.1", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/backend/package.json b/packages/backend/package.json index 56e3251..3150caa 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "@slate-collaborative/backend", - "version": "0.7.0", + "version": "0.7.1", "files": [ "lib" ], diff --git a/packages/example/package.json b/packages/example/package.json index e0c0713..f14091b 100644 --- a/packages/example/package.json +++ b/packages/example/package.json @@ -1,11 +1,11 @@ { "name": "@slate-collaborative/example", - "version": "0.7.0", + "version": "0.7.1", "private": true, "dependencies": { "@emotion/core": "^10.0.17", "@emotion/styled": "^10.0.17", - "@slate-collaborative/backend": "^0.7.0", + "@slate-collaborative/backend": "^0.7.1", "@slate-collaborative/client": "^0.7.0", "@types/faker": "^4.1.5", "@types/is-url": "^1.2.28",