diff --git a/CHANGELOG.md b/CHANGELOG.md index 44501b0..4be99f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ ## Changelog -### [v1.0.0](https://github.com/panates/flexy-buffer/compare/v0.1.2...v1.0.0) - +### [v1.0.1](https://github.com/panates/flexy-buffer/compare/v1.0.0...v1.0.1) - #### 💬 General Changes -- Add start()/flush(), byte-exact maxLength, fix writeString bug @Eray Hanoğlu -- Move to a single ESM-only build @Eray Hanoğlu +- Upgrade TypeScript to v6.0.3 in dependencies and lockfile @Eray Hanoğlu +- Drop the unverified browser claim, refresh docs baseline @Eray Hanoğlu diff --git a/README.md b/README.md index 7e52509..8b64428 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ [![CI Tests][ci-test-image]][ci-test-url] [![Test Coverage][coveralls-image]][coveralls-url] -A flexible, auto-growing binary buffer for Node.js and the browser. `BufferReader` -gives you a sequential, typed read cursor over a `Buffer`; `FlexyBuffer` extends it -with write methods and automatic, page-based capacity management, so you don't have -to size a buffer up front or manage reallocation yourself. +A flexible, auto-growing binary buffer for Node.js. `BufferReader` gives you a +sequential, typed read cursor over a `Buffer`; `FlexyBuffer` extends it with write +methods and automatic, page-based capacity management, so you don't have to size a +buffer up front or manage reallocation yourself. ## 📖 [Full API documentation](docs/api.md) diff --git a/docs/api.md b/docs/api.md index 6d7b229..d7bf8d6 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1,10 +1,10 @@ # flexy-buffer API Documentation diff --git a/package-lock.json b/package-lock.json index 4882555..6f3b4aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "flexy-buffer", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "flexy-buffer", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "ts-gems": "^4.0.4", diff --git a/package.json b/package.json index 3a21f90..0799390 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "flexy-buffer", "description": "Flexible buffer for node.js and browser.", - "version": "1.0.0", + "version": "1.0.1", "author": "Panates", "license": "MIT", "private": true,