@stdlib/math-base-special-truncf 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +6 -3
- package/SECURITY.md +5 -0
- package/package.json +9 -8
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -234,7 +234,7 @@ See [LICENSE][stdlib-license].
|
|
|
234
234
|
|
|
235
235
|
## Copyright
|
|
236
236
|
|
|
237
|
-
Copyright © 2016-
|
|
237
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
238
238
|
|
|
239
239
|
</section>
|
|
240
240
|
|
|
@@ -247,8 +247,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
247
247
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-truncf.svg
|
|
248
248
|
[npm-url]: https://npmjs.org/package/@stdlib/math-base-special-truncf
|
|
249
249
|
|
|
250
|
-
[test-image]: https://github.com/stdlib-js/math-base-special-truncf/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
251
|
-
[test-url]: https://github.com/stdlib-js/math-base-special-truncf/actions/workflows/test.yml?query=branch:v0.
|
|
250
|
+
[test-image]: https://github.com/stdlib-js/math-base-special-truncf/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
251
|
+
[test-url]: https://github.com/stdlib-js/math-base-special-truncf/actions/workflows/test.yml?query=branch:v0.2.0
|
|
252
252
|
|
|
253
253
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-truncf/main.svg
|
|
254
254
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-truncf?branch=main
|
|
@@ -271,8 +271,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
271
271
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
272
272
|
|
|
273
273
|
[deno-url]: https://github.com/stdlib-js/math-base-special-truncf/tree/deno
|
|
274
|
+
[deno-readme]: https://github.com/stdlib-js/math-base-special-truncf/blob/deno/README.md
|
|
274
275
|
[umd-url]: https://github.com/stdlib-js/math-base-special-truncf/tree/umd
|
|
276
|
+
[umd-readme]: https://github.com/stdlib-js/math-base-special-truncf/blob/umd/README.md
|
|
275
277
|
[esm-url]: https://github.com/stdlib-js/math-base-special-truncf/tree/esm
|
|
278
|
+
[esm-readme]: https://github.com/stdlib-js/math-base-special-truncf/blob/esm/README.md
|
|
276
279
|
[branches-url]: https://github.com/stdlib-js/math-base-special-truncf/blob/main/branches.md
|
|
277
280
|
|
|
278
281
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-special-truncf/main/LICENSE
|
package/SECURITY.md
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-base-special-truncf",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Round a single-precision floating-point number toward zero.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -40,23 +40,24 @@
|
|
|
40
40
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@stdlib/math-base-napi-unary": "^0.
|
|
44
|
-
"@stdlib/math-base-special-ceilf": "^0.
|
|
45
|
-
"@stdlib/math-base-special-floorf": "^0.
|
|
46
|
-
"@stdlib/utils-library-manifest": "^0.
|
|
43
|
+
"@stdlib/math-base-napi-unary": "^0.2.0",
|
|
44
|
+
"@stdlib/math-base-special-ceilf": "^0.2.0",
|
|
45
|
+
"@stdlib/math-base-special-floorf": "^0.2.0",
|
|
46
|
+
"@stdlib/utils-library-manifest": "^0.2.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@stdlib/bench": "^0.1.0",
|
|
50
49
|
"@stdlib/constants-float32-ninf": "^0.1.1",
|
|
51
50
|
"@stdlib/constants-float32-pinf": "^0.1.1",
|
|
52
51
|
"@stdlib/math-base-assert-is-nanf": "^0.1.1",
|
|
53
52
|
"@stdlib/math-base-assert-is-negative-zerof": "^0.1.1",
|
|
54
53
|
"@stdlib/math-base-assert-is-positive-zerof": "^0.1.1",
|
|
55
54
|
"@stdlib/random-base-randu": "^0.1.0",
|
|
56
|
-
"@stdlib/utils-try-require": "^0.
|
|
55
|
+
"@stdlib/utils-try-require": "^0.2.0",
|
|
57
56
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
58
57
|
"istanbul": "^0.4.1",
|
|
59
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
58
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
59
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
60
|
+
"@stdlib/bench": "^0.3.1"
|
|
60
61
|
},
|
|
61
62
|
"engines": {
|
|
62
63
|
"node": ">=0.10.0",
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|