diff --git a/CHANGELOG.md b/CHANGELOG.md index 2554af0..0c6d989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# [2.0.0](https://github.com/TimoBechtel/socketdb/compare/v1.0.0...v2.0.0) (2020-11-23) + + +### Bug Fixes + +* **client:** add check for window object ([5b0cbc5](https://github.com/TimoBechtel/socketdb/commit/5b0cbc54d883bbc7dfa8d366bacec73b67df7464)) + + +### Features + +* replace socket.io with native websockets ([8892b41](https://github.com/TimoBechtel/socketdb/commit/8892b41e77ccce2a689df3c16fcb04da164e4973)) + + +### BREAKING CHANGES + +* API for initializing Server and Client was changed. It does not need a socket.io instance anymore. + # 1.0.0 (2020-11-19) diff --git a/package.json b/package.json index 2b9c02d..895f188 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "socketdb", - "version": "1.0.0", + "version": "2.0.0", "description": "Real-time synchronized data storage", "main": "dist/index.js", "types": "dist/index.d.ts",