diff --git a/CHANGELOG.md b/CHANGELOG.md index a962bde..f7c2ed9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-11-12) +## Unreleased (2024-11-16)
@@ -34,6 +34,7 @@ This release closes the following issue:
+- [`19343f5`](https://github.com/stdlib-js/stdlib/commit/19343f5f7a3359b989d091ed31d9e3c64cf89c9c) - **chore:** fix copyright years and disable lint rules _(by Philipp Burckhardt)_ - [`3e373df`](https://github.com/stdlib-js/stdlib/commit/3e373df5f80a866121754b0475478ff7e135f8ed) - **feat:** add `constants/float32/max-base10-exponent-subnormal` [(#3099)](https://github.com/stdlib-js/stdlib/pull/3099) _(by Aayush Khanna, Philipp Burckhardt)_
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index c9f811c..b2ba387 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -59,6 +59,7 @@ Mohammad Kaif <98884589+Kaif987@users.noreply.github.com> Momtchil Momtchev Muhammad Haris Naresh Jagadeesan +Neeraj Pathak NightKnight Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com> @@ -69,6 +70,7 @@ Prajwal Kulkarni Pranav Goswami Praneki <97080887+PraneGIT@users.noreply.github.com> Pratik <97464067+Pratik772846@users.noreply.github.com> +Pratyush Kumar Chouhan Priyansh <88396544+itsspriyansh@users.noreply.github.com> Pushpendra Chandravanshi RISHAV <115060907+rishav2404@users.noreply.github.com> @@ -79,6 +81,7 @@ Ridam Garg <67867319+RidamGarg@users.noreply.github.com> Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Rutam <138517416+performant23@users.noreply.github.com> +Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com> Ryan Seal Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com> SarthakPaandey <145528240+SarthakPaandey@users.noreply.github.com> diff --git a/dist/index.js.map b/dist/index.js.map index b6e113e..2f32dff 100644 --- a/dist/index.js.map +++ b/dist/index.js.map @@ -1,7 +1,7 @@ { "version": 3, "sources": ["../lib/index.js"], - "sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2024 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/**\n* The maximum base 10 exponent for a subnormal single-precision floating-point number.\n*\n* @module @stdlib/constants-float32-max-base10-exponent-subnormal\n* @type {integer32}\n*\n* @example\n* var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants-float32-max-base10-exponent-subnormal' );\n* // returns -38\n*/\n\n\n// MAIN //\n\n/**\n* The maximum base 10 exponent for a subnormal single-precision floating-point number.\n*\n* ```text\n* 2^-126 \u2248 1.17549435e-38 => -38\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -38\n* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}\n*/\nvar FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = -38|0; // asm type annotation\n\n\n// EXPORTS //\n\nmodule.exports = FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL;\n"], - "mappings": "aA8CA,IAAIA,EAAwC,IAK5C,OAAO,QAAUA", + "sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2024 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n/* eslint-disable id-length */\n\n'use strict';\n\n/**\n* The maximum base 10 exponent for a subnormal single-precision floating-point number.\n*\n* @module @stdlib/constants-float32-max-base10-exponent-subnormal\n* @type {integer32}\n*\n* @example\n* var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants-float32-max-base10-exponent-subnormal' );\n* // returns -38\n*/\n\n\n// MAIN //\n\n/**\n* The maximum base 10 exponent for a subnormal single-precision floating-point number.\n*\n* ```text\n* 2^-126 \u2248 1.17549435e-38 => -38\n* ```\n*\n* @constant\n* @type {integer32}\n* @default -38\n* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}\n*/\nvar FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = -38|0; // asm type annotation\n\n\n// EXPORTS //\n\nmodule.exports = FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL;\n"], + "mappings": "aAgDA,IAAIA,EAAwC,IAK5C,OAAO,QAAUA", "names": ["FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL"] } diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index 38ad803..eb818e5 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/docs/types/test.ts b/docs/types/test.ts index f6b89e7..a5a8651 100644 --- a/docs/types/test.ts +++ b/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/index.js b/examples/index.js index d223d88..45fad38 100644 --- a/examples/index.js +++ b/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ 'use strict'; -var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); +var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length console.log( FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL ); // => -38 diff --git a/lib/index.js b/lib/index.js index 3b1d561..024e4e6 100644 --- a/lib/index.js +++ b/lib/index.js @@ -16,6 +16,8 @@ * limitations under the License. */ +/* eslint-disable id-length */ + 'use strict'; /** diff --git a/test/test.js b/test/test.js index c026613..0fb43a5 100644 --- a/test/test.js +++ b/test/test.js @@ -21,7 +21,7 @@ // MODULES // var tape = require( 'tape' ); -var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); +var FLOAT32_MAX_BASE10_EXPONENT_SUBNORMAL = require( './../lib' ); // eslint-disable-line id-length // TESTS //