iterflow 0.9.0 → 0.10.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/README.md +32 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -7,9 +7,6 @@ Iterator utilities for ES2022+ with statistical operations, windowing, and lazy
7
7
 
8
8
  ---
9
9
 
10
- **v0.9.0 Release Candidate**. See [MIGRATION.md](docs/MIGRATION.md) for upgrade guidance.
11
-
12
- ---
13
10
 
14
11
  ## Installation
15
12
 
@@ -331,6 +328,38 @@ For quick start:
331
328
 
332
329
  See [PLAYBOOK.md](PLAYBOOK.md) for complete details.
333
330
 
331
+ ## Semantic Versioning Commitment
332
+
333
+ Starting with v1.0.0, iterflow follows strict semantic versioning:
334
+
335
+ - **Major versions** (2.0.0, 3.0.0): Breaking changes to public API
336
+ - **Minor versions** (1.1.0, 1.2.0): New features, backwards-compatible
337
+ - **Patch versions** (1.0.1, 1.0.2): Bug fixes, no API changes
338
+
339
+ ### API Stability Guarantee
340
+
341
+ The following APIs are stable and will not have breaking changes in 1.x:
342
+
343
+ - All public methods on `iterflow<T>` class (116 methods)
344
+ - All public methods on `Asynciterflow<T>` class (116 methods)
345
+ - All exports from `iterflow/fn` functional API
346
+ - All error classes (`iterflowError`, `TimeoutError`, `AbortError`, `OperationError`)
347
+ - All TypeScript type definitions and interfaces
348
+
349
+ ### What We Promise
350
+
351
+ - **No breaking changes** in minor or patch releases
352
+ - **Comprehensive changelog** for all releases
353
+ - **Deprecation warnings** before any breaking changes (minimum 1 major version notice)
354
+ - **Migration guides** for major version upgrades
355
+ - **Long-term support** for 1.x (at least 18 months from v1.0.0 release)
356
+
357
+ ### Reporting Issues
358
+
359
+ - **Bugs**: https://github.com/mathscapes/iterflow/issues
360
+ - **Security**: See [SECURITY.md](SECURITY.md) for responsible disclosure
361
+ - **Feature Requests**: https://github.com/mathscapes/iterflow/discussions
362
+
334
363
  ## License
335
364
 
336
365
  The Unlicense - See [LICENSE](LICENSE) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iterflow",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "Powerful iterator utilities for ES2022+ with statistical operations, windowing, and lazy evaluation. Forward compatible with ES2025 iterator helpers.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -105,7 +105,7 @@
105
105
  "@types/lodash": "^4.17.20",
106
106
  "@types/node": "^20.0.0",
107
107
  "@types/ramda": "^0.31.1",
108
- "@vitest/coverage-v8": "^2.1.9",
108
+ "@vitest/coverage-v8": "^4.0.16",
109
109
  "eslint": "^9.0.0",
110
110
  "fast-check": "^4.3.0",
111
111
  "lodash": "^4.17.21",
@@ -116,6 +116,6 @@
116
116
  "typedoc": "^0.26.0",
117
117
  "typescript": "^5.6.0",
118
118
  "typescript-eslint": "^8.0.0",
119
- "vitest": "^2.0.0"
119
+ "vitest": "^4.0.16"
120
120
  }
121
121
  }