From ccc1fa06f21f320e557fb110ea5cdd61fecafb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 2 May 2019 16:27:30 +0200 Subject: [PATCH] 2.0.0 --- History.md | 18 ++++++++++++++++++ package.json | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index adb6751..f9c7a4a 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,21 @@ +# [2.0.0](https://github.com/mljs/hclust/compare/v1.3.0...v2.0.0) (2019-05-02) + + +### Code Refactoring + +* **agnes:** rename `options.kind` to `options.method` ([acabbe6](https://github.com/mljs/hclust/commit/acabbe6)) +* rework options and write TS definitions ([f49c7af](https://github.com/mljs/hclust/commit/f49c7af)) +* rewrite project as ESM and use rollup ([f02ad0a](https://github.com/mljs/hclust/commit/f02ad0a)) + + +### BREAKING CHANGES + +* **agnes:** `options.kind` was renamed to `options.method` in `agnes`. +* the `disFunc` option was renamed to `distanceFunction`. +* Node.js 4 and 6 are no longer supported. + + + # [1.3.0](https://github.com/mljs/hclust/compare/v1.2.1...v1.3.0) (2017-02-22) diff --git a/package.json b/package.json index 4782c01..a965c59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ml-hclust", - "version": "1.3.0", + "version": "2.0.0", "description": "Hierarchical clustering algorithms", "main": "hclust.js", "module": "src/index.js",