Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions docs/api.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!--
docs-baseline
git-commit: ee0d086303ffe88595c54c23a988d4c3fca3729c
package-version: 0.1.2
git-commit: 861f13612a84d87277115c1918478edda916f542
package-version: 1.0.0
date: 2026-09-12
verified-against: src/
diff-command: git diff ee0d086303ffe88595c54c23a988d4c3fca3729c..HEAD -- src/
diff-command: git diff 861f13612a84d87277115c1918478edda916f542..HEAD -- src/
-->

# flexy-buffer API Documentation
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down