Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 24, 2023
1 parent fb4b6be commit 97a20d0
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 50 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,8 @@ indent_size = 2
[*.gypi]
indent_style = space
indent_size = 2

# Set properties for citation files:
[*.{cff,cff.txt}]
indent_style = space
indent_size = 2
30 changes: 30 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
cff-version: 1.2.0
title: stdlib
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software

authors:
- name: The Stdlib Authors
url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
Standard library for JavaScript and Node.js.
keywords:
- JavaScript
- Node.js
- TypeScript
- standard library
- scientific computing
- numerical computing
- statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ limitations under the License.
-->


<details>
<summary>
About stdlib...
</summary>
<p>We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.</p>
<p>The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.</p>
<p>When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.</p>
<p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
</details>

# Typed Array Pool

[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
Expand Down Expand Up @@ -512,8 +523,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-pool.svg
[npm-url]: https://npmjs.org/package/@stdlib/array-pool

[test-image]: https://github.com/stdlib-js/array-pool/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/array-pool/actions/workflows/test.yml?query=branch:main
[test-image]: https://github.com/stdlib-js/array-pool/actions/workflows/test.yml/badge.svg?branch=v0.1.0
[test-url]: https://github.com/stdlib-js/array-pool/actions/workflows/test.yml?query=branch:v0.1.0

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-pool/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/array-pool?branch=main
Expand Down
96 changes: 48 additions & 48 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/array-pool",
"version": "0.0.6",
"version": "0.1.0",
"description": "Typed array pool.",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -37,55 +37,55 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/array-base-accessors": "^0.0.2",
"@stdlib/array-buffer": "^0.0.6",
"@stdlib/array-dtype": "^0.0.6",
"@stdlib/array-typed-ctors": "^0.0.6",
"@stdlib/assert-has-own-property": "^0.0.7",
"@stdlib/assert-is-arraybuffer": "^0.0.8",
"@stdlib/assert-is-collection": "^0.0.8",
"@stdlib/assert-is-complex128array": "^0.0.7",
"@stdlib/assert-is-complex64array": "^0.0.7",
"@stdlib/assert-is-nonnegative-integer": "^0.0.7",
"@stdlib/assert-is-plain-object": "^0.0.7",
"@stdlib/assert-is-string": "^0.0.8",
"@stdlib/assert-is-typed-array-like": "^0.0.8",
"@stdlib/math-base-special-ceil": "^0.0.8",
"@stdlib/math-base-special-ceil2": "^0.0.6",
"@stdlib/math-base-special-floor": "^0.0.8",
"@stdlib/math-base-special-log2": "^0.0.7",
"@stdlib/math-base-special-min": "^0.0.7",
"@stdlib/strided-base-reinterpret-complex128": "^0.0.2",
"@stdlib/strided-base-reinterpret-complex64": "^0.0.2",
"@stdlib/string-format": "^0.0.3",
"@stdlib/types": "^0.0.14",
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.0.7",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.0.7"
"@stdlib/array-base-accessors": "^0.1.0",
"@stdlib/array-buffer": "^0.1.0",
"@stdlib/array-dtype": "^0.1.0",
"@stdlib/array-typed-ctors": "^0.1.0",
"@stdlib/assert-has-own-property": "^0.1.0",
"@stdlib/assert-is-arraybuffer": "^0.1.0",
"@stdlib/assert-is-collection": "^0.1.0",
"@stdlib/assert-is-complex128array": "^0.1.0",
"@stdlib/assert-is-complex64array": "^0.1.0",
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
"@stdlib/assert-is-plain-object": "^0.1.0",
"@stdlib/assert-is-string": "^0.1.0",
"@stdlib/assert-is-typed-array-like": "^0.1.0",
"@stdlib/math-base-special-ceil": "^0.1.0",
"@stdlib/math-base-special-ceil2": "^0.1.0",
"@stdlib/math-base-special-floor": "^0.1.0",
"@stdlib/math-base-special-log2": "^0.1.0",
"@stdlib/math-base-special-min": "^0.1.0",
"@stdlib/strided-base-reinterpret-complex128": "^0.1.0",
"@stdlib/strided-base-reinterpret-complex64": "^0.1.0",
"@stdlib/string-format": "^0.1.0",
"@stdlib/types": "^0.1.0",
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.0",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0"
},
"devDependencies": {
"@stdlib/array-complex128": "^0.0.6",
"@stdlib/array-complex64": "^0.0.6",
"@stdlib/array-float32": "^0.0.6",
"@stdlib/array-float64": "^0.0.6",
"@stdlib/array-int16": "^0.0.6",
"@stdlib/array-int32": "^0.0.6",
"@stdlib/array-int8": "^0.0.6",
"@stdlib/array-uint16": "^0.0.6",
"@stdlib/array-uint32": "^0.0.6",
"@stdlib/array-uint8": "^0.0.7",
"@stdlib/array-uint8c": "^0.0.8",
"@stdlib/assert-instance-of": "^0.0.8",
"@stdlib/assert-is-complex-typed-array": "^0.0.6",
"@stdlib/assert-is-function": "^0.0.8",
"@stdlib/assert-is-typed-array": "^0.0.6",
"@stdlib/bench": "^0.0.12",
"@stdlib/complex-float32": "^0.0.7",
"@stdlib/complex-float64": "^0.0.8",
"@stdlib/complex-imag": "^0.0.7",
"@stdlib/complex-imagf": "^0.0.1",
"@stdlib/complex-real": "^0.0.7",
"@stdlib/complex-realf": "^0.0.1",
"@stdlib/math-base-special-pow": "^0.0.7",
"@stdlib/array-complex128": "^0.1.0",
"@stdlib/array-complex64": "^0.1.0",
"@stdlib/array-float32": "^0.1.0",
"@stdlib/array-float64": "^0.1.0",
"@stdlib/array-int16": "^0.1.0",
"@stdlib/array-int32": "^0.1.0",
"@stdlib/array-int8": "^0.1.0",
"@stdlib/array-uint16": "^0.1.0",
"@stdlib/array-uint32": "^0.1.0",
"@stdlib/array-uint8": "^0.1.0",
"@stdlib/array-uint8c": "^0.1.0",
"@stdlib/assert-instance-of": "^0.1.0",
"@stdlib/assert-is-complex-typed-array": "^0.1.0",
"@stdlib/assert-is-function": "^0.1.0",
"@stdlib/assert-is-typed-array": "^0.1.0",
"@stdlib/bench": "^0.1.0",
"@stdlib/complex-float32": "^0.1.0",
"@stdlib/complex-float64": "^0.1.0",
"@stdlib/complex-imag": "^0.1.0",
"@stdlib/complex-imagf": "^0.1.0",
"@stdlib/complex-real": "^0.1.0",
"@stdlib/complex-realf": "^0.1.0",
"@stdlib/math-base-special-pow": "^0.1.0",
"@stdlib/random-base-randu": "^0.0.8",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
Expand Down

0 comments on commit 97a20d0

Please sign in to comment.