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

## [2.0.0](https://github.com/mljs/array/compare/v1.1.0...v2.0.0) (2026-04-14)


### ⚠ BREAKING CHANGES

* migrate to TypeScript and ESM-only ([#21](https://github.com/mljs/array/issues/21))

### Features

* add maxValue in normed max algo and improve speed ([4c01258](https://github.com/mljs/array/commit/4c012584f7ddaee221921a97b2bc142cc93b6f84))
* add sumValue in normed ([a6e60c5](https://github.com/mljs/array/commit/a6e60c5d6e399aa3f24c30485d1be0b8bb373d1e))
* adding fromIndex/toIndex options for min and max. ([#13](https://github.com/mljs/array/issues/13)) ([d32b851](https://github.com/mljs/array/commit/d32b85106f703b4d6a82441f6db166ff057383c1))


### Bug Fixes

* add missing "types" field ([27cf789](https://github.com/mljs/array/commit/27cf78928362cffa6735b42b72a3f161e3dae2aa))
* **array-sequential-fill:** allow full range of is-any-array versions ([57e33ec](https://github.com/mljs/array/commit/57e33ec994dd7e4f8c8587c4c983d7cfd5150714))
* correct TS definitions ([71e7fa8](https://github.com/mljs/array/commit/71e7fa8ace065634d047ff30e842f0426b239b4a))
* output type ([ee6e4d7](https://github.com/mljs/array/commit/ee6e4d70d7e5878d89c34c4208ea53273f948279))
* update `is-any-array` to v3 ([1ff9aa3](https://github.com/mljs/array/commit/1ff9aa3cfc256ac4f22f7374b873e498d4db6fd7))
* update is-any-array to v1 ([578e6d6](https://github.com/mljs/array/commit/578e6d68a429ebc72a2eaa991eec6baf377f2405))
* use TS namespace instead of modules for default exports ([#16](https://github.com/mljs/array/issues/16)) ([3b5c725](https://github.com/mljs/array/commit/3b5c7258df898ec5d35af70ac51570f956e1f9a8))


### Code Refactoring

* migrate to TypeScript and ESM-only ([#21](https://github.com/mljs/array/issues/21)) ([1ff9aa3](https://github.com/mljs/array/commit/1ff9aa3cfc256ac4f22f7374b873e498d4db6fd7))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ml-array-utils",
"private": true,
"version": "1.0.0",
"version": "2.0.0",
"description": "Functional utilities to transform and compute stats on arrays",
"type": "module",
"workspaces": [
Expand Down
Loading