Skip to content

Commit 2281a48

Browse files
committed
Release v0.1.0
1 parent e927382 commit 2281a48

8 files changed

Lines changed: 33 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
> Package changelog.
44
5-
<section class="release" id="unreleased">
5+
<section class="release" id="v0.1.0">
66

7-
## Unreleased (2026-01-06)
7+
## 0.1.0 (2026-01-29)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`2035f34`](https://github.com/stdlib-js/stdlib/commit/2035f344a1a469278042b7532f034dc6119933b3) - **docs:** add function documentation _(by Athan Reines)_
2526
- [`008ae82`](https://github.com/stdlib-js/stdlib/commit/008ae82617ebeff86a92987e405e2c30ad627f1d) - **feat:** add `stats/strided/distances/dchebychev` [(#9559)](https://github.com/stdlib-js/stdlib/pull/9559) _(by Nakul Krishnakumar, Athan Reines, stdlib-bot)_
2627

2728
</details>

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2025 The Stdlib Authors.
1+
Copyright (c) 2016-2026 The Stdlib Authors.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
389389
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-strided-distances-dchebychev.svg
390390
[npm-url]: https://npmjs.org/package/@stdlib/stats-strided-distances-dchebychev
391391
392-
[test-image]: https://github.com/stdlib-js/stats-strided-distances-dchebychev/actions/workflows/test.yml/badge.svg?branch=main
393-
[test-url]: https://github.com/stdlib-js/stats-strided-distances-dchebychev/actions/workflows/test.yml?query=branch:main
392+
[test-image]: https://github.com/stdlib-js/stats-strided-distances-dchebychev/actions/workflows/test.yml/badge.svg?branch=v0.1.0
393+
[test-url]: https://github.com/stdlib-js/stats-strided-distances-dchebychev/actions/workflows/test.yml?query=branch:v0.1.0
394394
395395
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-strided-distances-dchebychev/main.svg
396396
[coverage-url]: https://codecov.io/github/stdlib-js/stats-strided-distances-dchebychev?branch=main

benchmark/benchmark.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ function createBenchmark( len ) {
5050
var y = uniform( len, -100.0, 100.0, options );
5151
return benchmark;
5252

53+
/**
54+
* Benchmark function.
55+
*
56+
* @private
57+
* @param {Benchmark} b - benchmark instance
58+
*/
5359
function benchmark( b ) {
5460
var d;
5561
var i;

benchmark/benchmark.native.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ function createBenchmark( len ) {
5555
var y = uniform( len, -100.0, 100.0, options );
5656
return benchmark;
5757

58+
/**
59+
* Benchmark function.
60+
*
61+
* @private
62+
* @param {Benchmark} b - benchmark instance
63+
*/
5864
function benchmark( b ) {
5965
var d;
6066
var i;

benchmark/benchmark.ndarray.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ function createBenchmark( len ) {
5050
var y = uniform( len, -100.0, 100.0, options );
5151
return benchmark;
5252

53+
/**
54+
* Benchmark function.
55+
*
56+
* @private
57+
* @param {Benchmark} b - benchmark instance
58+
*/
5359
function benchmark( b ) {
5460
var d;
5561
var i;

benchmark/benchmark.ndarray.native.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ function createBenchmark( len ) {
5555
var y = uniform( len, -100.0, 100.0, options );
5656
return benchmark;
5757

58+
/**
59+
* Benchmark function.
60+
*
61+
* @private
62+
* @param {Benchmark} b - benchmark instance
63+
*/
5864
function benchmark( b ) {
5965
var d;
6066
var i;

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/stats-strided-distances-dchebychev",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Compute the Chebychev distance between two double-precision floating-point strided arrays.",
55
"license": "Apache-2.0",
66
"author": {
@@ -48,10 +48,10 @@
4848
"@stdlib/napi-argv-int64": "^0.2.2",
4949
"@stdlib/napi-argv-strided-float64array": "^0.2.2",
5050
"@stdlib/napi-create-double": "^0.0.2",
51-
"@stdlib/napi-export": "^0.2.2",
51+
"@stdlib/napi-export": "^0.3.0",
5252
"@stdlib/strided-base-stride2offset": "^0.1.0",
5353
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
54-
"@stdlib/utils-library-manifest": "^0.2.2",
54+
"@stdlib/utils-library-manifest": "^0.2.3",
5555
"@stdlib/utils-try-require": "^0.2.2"
5656
},
5757
"devDependencies": {
@@ -102,7 +102,6 @@
102102
"double",
103103
"float64array"
104104
],
105-
"__stdlib__": {},
106105
"funding": {
107106
"type": "opencollective",
108107
"url": "https://opencollective.com/stdlib"

0 commit comments

Comments
 (0)