From 7fc5080cff2bfead7e6553c34e2817403a049e32 Mon Sep 17 00:00:00 2001 From: Jonathan Delgado Date: Sun, 24 Mar 2024 20:10:15 -0300 Subject: [PATCH] chore(develop): release streamable-tools 0.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 46b1b67..3d2ac0b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "0.1.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5074f93 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,33 @@ +# Changelog + +## 0.1.0 (2024-03-24) + + +### Features + +* add helper function for creating ReadableStream with controller ([c4496da](https://github.com/JonDotsoy/streamable-tools/commit/c4496dad2eb464f5b1ba0cf9ea5973b93fd02f4b)) +* add iterableToReadableStream utility function ([7632c33](https://github.com/JonDotsoy/streamable-tools/commit/7632c338e6df79374512c3b40a3a2762e17cb804)) +* add Makefile to streamline build process ([187b7c1](https://github.com/JonDotsoy/streamable-tools/commit/187b7c1bcf567d1852847c3b38a0a86e3400cace)) +* add readable stream transforms utility ([1965bd1](https://github.com/JonDotsoy/streamable-tools/commit/1965bd144c88708d4bd70958f31fee20abc569a3)) +* add SplitStream with tests for splitting stream data by newlines ([6f11660](https://github.com/JonDotsoy/streamable-tools/commit/6f11660c704b73bcff5be7703b1c096517200c4b)) +* add stream transformation utilities and tests ([a70f26a](https://github.com/JonDotsoy/streamable-tools/commit/a70f26a7a966b77e22a4d418df88aae680a4c482)) +* initialize project with essential configurations and documentation ([4173fba](https://github.com/JonDotsoy/streamable-tools/commit/4173fba9c150e838b4f221da2b7dcf17abdf630f)) +* **multiply-stream:** add MultiplyStream class and tests ([0094d02](https://github.com/JonDotsoy/streamable-tools/commit/0094d02bd2cdf56473b5fd974960ba1b55e21afa)) +* **tests:** add new test case for string concatenation using readableStreamToText ([60bd694](https://github.com/JonDotsoy/streamable-tools/commit/60bd6943f0cf8bb0735153d5d75529376711e4e6)) + + +### Bug Fixes + +* add Iterable to Readable Stream module ([82f649f](https://github.com/JonDotsoy/streamable-tools/commit/82f649fed0c04ffbaa8ba59785d6b0079db4834b)) + + +### Performance Improvements + +* add stream utility modules and cross-platform support tests ([b3ee057](https://github.com/JonDotsoy/streamable-tools/commit/b3ee0575fe10b9ff4358c14d535ce3bf1ac8ba0a)) +* enhance project structure and introduce normalization ([77fbdad](https://github.com/JonDotsoy/streamable-tools/commit/77fbdad04f01a7b735c0c00f73036e85ef5d81c3)) +* update `MultiplyStream` to accept `ReadableWritablePair` ([333f6c6](https://github.com/JonDotsoy/streamable-tools/commit/333f6c630212784f850c411bef30b79c5d9e757e)) + + +### Miscellaneous Chores + +* release 0.1.0 ([715f221](https://github.com/JonDotsoy/streamable-tools/commit/715f22105ec8a2215fa4588495ca663df28e9cb8)) diff --git a/package.json b/package.json index 6583b9f..a66fbc6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "streamable-tools", "description": "`streamable-tools` is a JS/TS library for easy stream manipulation in web apps, offering utilities like `MultiplyStream` for data propagation, `SplitStream` for data splitting, and tools for stream creation and control.", - "version": "0.1.8", + "version": "0.1.0", "license": "MIT", "types": "./index.d.ts", "typesVersions": {