From 5434ed4eb6f770c2f1d57656184634ff9f81c5c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eray=20Hano=C4=9Flu?= Date: Sat, 12 Sep 2026 13:38:59 +0300 Subject: [PATCH 1/2] Drop the unverified browser claim, refresh docs baseline - README described flexy-buffer as working in Node.js "and the browser", copied from package.json's description without checking - the library uses Node's Buffer API directly with no browser build or polyfill, so drop that claim - Bump docs/api.md's baseline commit/package-version to HEAD; src/ hasn't changed since the baseline was first written, so the content itself still holds --- README.md | 8 ++++---- docs/api.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) 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 From ebc52eeacd5cb87ee83a332de538654ab7d98e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eray=20Hano=C4=9Flu?= Date: Sat, 12 Sep 2026 13:39:33 +0300 Subject: [PATCH 2/2] 1.0.1 --- CHANGELOG.md | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) 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/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,