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
39 changes: 39 additions & 0 deletions packages/plainfp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Changelog

## v0.1.0

### 🚀 Enhancements

- **result,option:** Add tap/tapError + tap/tapNone ([669d5b9](https://github.com/kelsos/plainfp/commit/669d5b9))
- **option,result:** Option.all/any/zip + Option↔Result interop ([16d89f3](https://github.com/kelsos/plainfp/commit/16d89f3))

### 🔥 Performance

- Add benches for Option, ResultAsync, and Records ([a4b6d4f](https://github.com/kelsos/plainfp/commit/a4b6d4f))

### 🩹 Fixes

- **ci:** Inject CodSpeed V8 flags via vitest execArgv ([ea43477](https://github.com/kelsos/plainfp/commit/ea43477))
- **result-async:** Propagate factory rejections in allWithConcurrency + fill coverage gaps ([25bae7a](https://github.com/kelsos/plainfp/commit/25bae7a))

### 📖 Documentation

- Add TSDoc across public APIs and auto-publish TypeDoc site ([377d35d](https://github.com/kelsos/plainfp/commit/377d35d))
- Sync README API map with current exports ([30549a3](https://github.com/kelsos/plainfp/commit/30549a3))

### 🏡 Chore

- Initial commit ([02fe78c](https://github.com/kelsos/plainfp/commit/02fe78c))

### ✅ Tests

- Property-based tests for Result/Option/Arrays/pipe laws ([5153437](https://github.com/kelsos/plainfp/commit/5153437))
- Add integration suite covering cross-module compositions ([003916b](https://github.com/kelsos/plainfp/commit/003916b))

### 🤖 CI

- Wire CodSpeed OIDC, Codecov, and status badges ([f9077da](https://github.com/kelsos/plainfp/commit/f9077da))

### ❤️ Contributors

- Konstantinos Paparas <kelsos86@gmail.com>
2 changes: 1 addition & 1 deletion packages/plainfp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plainfp",
"version": "0.0.1",
"version": "0.1.0",
"description": "A plain, readable functional programming library for TypeScript — Result, Option, and friends, without the category theory.",
"keywords": [
"fp",
Expand Down
Loading