From 38539d5692c8c7bd0660660e000d86eae394e111 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 22 Jun 2023 04:40:00 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] # [2.0.0](https://github.com/peers/js-binarypack/compare/v1.0.2...v2.0.0) (2023-06-22) ### Bug Fixes * empty TypedArray can now be packed ([3475f45](https://github.com/peers/js-binarypack/commit/3475f450a7bc97b757325cd54bc7ba7ffc84118b)) * undefined will stay undefined instead of null ([83af274](https://github.com/peers/js-binarypack/commit/83af274ea82fdd44d93546f18cbcf547abe77804)) ### Features * return `ArrayBuffer` instead of `Blob` ([6b70875](https://github.com/peers/js-binarypack/commit/6b70875b4d7db791fdd14a1f3ff3776d12febfb2)) ### Reverts * Revert "fix: undefined will stay undefined instead of null" ([da49137](https://github.com/peers/js-binarypack/commit/da4913787d9ab96845bd8e512d5f501574746a35)) ### BREAKING CHANGES * Return type of `pack` is now `ArrayBuffer` --- CHANGELOG.md | 22 ++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2b36c47 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# [2.0.0](https://github.com/peers/js-binarypack/compare/v1.0.2...v2.0.0) (2023-06-22) + + +### Bug Fixes + +* empty TypedArray can now be packed ([3475f45](https://github.com/peers/js-binarypack/commit/3475f450a7bc97b757325cd54bc7ba7ffc84118b)) +* undefined will stay undefined instead of null ([83af274](https://github.com/peers/js-binarypack/commit/83af274ea82fdd44d93546f18cbcf547abe77804)) + + +### Features + +* return `ArrayBuffer` instead of `Blob` ([6b70875](https://github.com/peers/js-binarypack/commit/6b70875b4d7db791fdd14a1f3ff3776d12febfb2)) + + +### Reverts + +* Revert "fix: undefined will stay undefined instead of null" ([da49137](https://github.com/peers/js-binarypack/commit/da4913787d9ab96845bd8e512d5f501574746a35)) + + +### BREAKING CHANGES + +* Return type of `pack` is now `ArrayBuffer` diff --git a/package-lock.json b/package-lock.json index c5994c4..4a857f1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "peerjs-js-binarypack", - "version": "1.0.1", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "peerjs-js-binarypack", - "version": "1.0.1", + "version": "2.0.0", "license": "MIT", "devDependencies": { "@parcel/packager-ts": "^2.8.3", diff --git a/package.json b/package.json index 7b25451..208c884 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "peerjs-js-binarypack", - "version": "1.0.1", + "version": "2.0.0", "description": "BinaryPack serialization", "homepage": "https://github.com/peers/js-binarypack", "main": "dist/binarypack.cjs",