diff --git a/CHANGELOG.md b/CHANGELOG.md index 599399c..3b08a96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,3 +3,7 @@ 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). + +## [0.0.1] - 2024-10-26 + +- Initial release diff --git a/README.md b/README.md index 0571512..537fcd8 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ console.log(views.data.buffer.byteLength); // 4104 ## API -### `createArrayBufferViews` +### `createArrayBufferViews(BufferType: { new(size: number): ArrayBuffer | SharedArrayBuffer }, config: Record)` Creates multiple `TypedArray` views on a single `ArrayBuffer` or `SharedArrayBuffer`. diff --git a/package.json b/package.json index c1cf4da..ae3615a 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ ], "keywords": [ "ArrayBuffer", + "SharedArrayBuffer", "TypedArray", "partition", "allocator",