@culpeo/async-ws 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9453a7c: Initial release
8
+
9
+ - Cross-platform WebSocket client for Node.js and browsers
10
+ - Promise-based `connect()`, `send()`, `receive()`, `close()` API
11
+ - Async iteration with `for await...of`
12
+ - Message buffering with configurable `maxBufferSize`
13
+ - Clean close info tracking via `lastCloseInfo`
14
+ - TypeScript-first with bundled type definitions
15
+
3
16
  ## 0.1.0
4
17
 
5
18
  Initial release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@culpeo/async-ws",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Promise-first WebSocket client for Node.js and browsers",
5
5
  "author": "Gerardo Lecaros",
6
6
  "license": "MIT",