Skip to content

Commit aa73b63

Browse files
committed
Release v0.1.0
1 parent cf4642c commit aa73b63

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,14 @@ npm install @stdlib/array-base-assert-has-same-values
5555

5656
Alternatively,
5757

58-
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm` branch][esm-url].
59-
- If you are using Deno, visit the [`deno` branch][deno-url].
60-
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd` branch][umd-url].
58+
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]).
59+
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
60+
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]).
6161

6262
The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.
6363

64+
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
65+
6466
</section>
6567

6668
<section class="usage">
@@ -185,8 +187,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
185187
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-assert-has-same-values.svg
186188
[npm-url]: https://npmjs.org/package/@stdlib/array-base-assert-has-same-values
187189

188-
[test-image]: https://github.com/stdlib-js/array-base-assert-has-same-values/actions/workflows/test.yml/badge.svg?branch=main
189-
[test-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/actions/workflows/test.yml?query=branch:main
190+
[test-image]: https://github.com/stdlib-js/array-base-assert-has-same-values/actions/workflows/test.yml/badge.svg?branch=v0.1.0
191+
[test-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/actions/workflows/test.yml?query=branch:v0.1.0
190192

191193
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-assert-has-same-values/main.svg
192194
[coverage-url]: https://codecov.io/github/stdlib-js/array-base-assert-has-same-values?branch=main
@@ -209,8 +211,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
209211
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
210212

211213
[deno-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/deno
214+
[deno-readme]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/deno/README.md
212215
[umd-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/umd
216+
[umd-readme]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/umd/README.md
213217
[esm-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/esm
218+
[esm-readme]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/esm/README.md
214219
[branches-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/main/branches.md
215220

216221
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array-base-assert-has-same-values/main/LICENSE

branches.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ This repository has the following branches:
2424

2525
- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place.
2626
- **production**: [production build][production-url] of the package (e.g., reformatted error messages to reduce bundle sizes and thus the number of bytes transmitted over a network).
27-
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers.
28-
- **deno**: [Deno][deno-url] branch for use in Deno.
29-
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments.
27+
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]).
28+
- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]).
29+
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]).
3030

3131
The following diagram illustrates the relationships among the above branches:
3232

@@ -49,5 +49,8 @@ C -->|bundle| F[umd];
4949
[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/assert/has-same-values
5050
[production-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/production
5151
[deno-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/deno
52+
[deno-readme]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/deno/README.md
5253
[umd-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/umd
53-
[esm-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/esm
54+
[umd-readme]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/umd/README.md
55+
[esm-url]: https://github.com/stdlib-js/array-base-assert-has-same-values/tree/esm
56+
[esm-readme]: https://github.com/stdlib-js/array-base-assert-has-same-values/blob/esm/README.md

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/array-base-assert-has-same-values",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Test if two arrays have the same values.",
55
"license": "Apache-2.0",
66
"author": {

0 commit comments

Comments
 (0)