From 3cc559fdc11f10ff909207d2be4f40eedd08ea99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 29 Sep 2024 21:35:54 +0200 Subject: [PATCH] chore(master): release 0.6.2 (#23) * chore(master): release 0.6.2 * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- .github/release-please/manifest.json | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 +- jsr.json | 2 +- package.json | 2 +- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 5d02000..bf5f1fb 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.1" + ".": "0.6.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 17caefa..6edb907 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.2](https://github.com/poolifier/tatami-ng/compare/0.6.1...0.6.2) (2024-09-29) + + +### 🚀 Features + +* add average and median absolute deviation to stats ([cdf968a](https://github.com/poolifier/tatami-ng/commit/cdf968a226b4b4b0447fb99e4a659818f6940714)) + + +### 🐞 Bug Fixes + +* fix absolute deviation computation ([c2ad613](https://github.com/poolifier/tatami-ng/commit/c2ad613130f4650462945464b9c58fc21b7c9b4d)) + + +### ✨ Polish + +* cleanup quantile computation implementation ([8279e44](https://github.com/poolifier/tatami-ng/commit/8279e44a2e960ea26c007265807a3f668b48dda2)) +* median() -> medianSorted() ([850e46c](https://github.com/poolifier/tatami-ng/commit/850e46c9ad002f81ba1edd2529be571a8bb12d68)) +* refine benchmark time measurement displaying ([c5e2c8e](https://github.com/poolifier/tatami-ng/commit/c5e2c8e032a5d2d9190638c6e9363fe74f1ab619)) +* rename mean() -> average() ([81749fb](https://github.com/poolifier/tatami-ng/commit/81749fb271b55aae0ed1dc508f50e611cf5d5301)) + ## [0.6.1](https://github.com/poolifier/tatami-ng/compare/0.6.0...0.6.1) (2024-09-29) diff --git a/README.md b/README.md index c43a52c..8c16b01 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ Bun versions >= 1.x are supported. ``` diff --git a/jsr.json b/jsr.json index 87a0a95..dbbe592 100644 --- a/jsr.json +++ b/jsr.json @@ -1,7 +1,7 @@ { "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@poolifier/tatami-ng", - "version": "0.6.1", + "version": "0.6.2", "exports": "./src/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 2890b99..6e1bfbf 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "tatami-ng", "type": "module", "license": "MIT", - "version": "0.6.1", + "version": "0.6.2", "packageManager": "bun@1.1.29", "bin": { "tatami": "cli.js"