diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ae2be..3262b9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # This is the revision history of algorand-msgpack +## 1.1.0 2024-31-07 + +https://github.com/algorand/msgpack-javascript/compare/algorand-v1.0.1...algorand-v1.1.0 + +- Add `RawBinaryString` class, which enables encoding byte arrays as msgpack strings. +- Add decoding option `useRawBinaryStringClass`, which if enabled alongside `rawBinaryStringKeys` or `rawBinaryStringValues` will decode msgpack strings as `RawBinaryString` instances instead of `Uint8Array`s. + ## 1.0.1 2024-03-12 https://github.com/algorand/msgpack-javascript/compare/algorand-v1.0.0...algorand-v1.0.1 diff --git a/package-lock.json b/package-lock.json index 3658a11..d7ae721 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "algorand-msgpack", - "version": "1.0.1", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "algorand-msgpack", - "version": "1.0.1", + "version": "1.1.0", "license": "ISC", "devDependencies": { "@bitjourney/check-es-version-webpack-plugin": "latest", diff --git a/package.json b/package.json index 9cb934e..38d81bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "algorand-msgpack", - "version": "1.0.1", + "version": "1.1.0", "description": "MessagePack for ECMA-262/JavaScript/TypeScript", "author": "Algorand Technologies & the MessagePack community", "license": "ISC",