diff --git a/CHANGELOG.md b/CHANGELOG.md index dcce3d0..91a0886 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-11-12) +## Unreleased (2024-11-13)
@@ -48,6 +48,16 @@ +
+ +##### Bug Fixes + +- [`31c168c`](https://github.com/stdlib-js/stdlib/commit/31c168c72351f2885bcf7361b9168cefb454f6dc) - add missing `f` suffix in `constants/float32/ln-two` [(#3110)](https://github.com/stdlib-js/stdlib/pull/3110) + +
+ + +
@@ -215,6 +225,7 @@ A total of 4 people contributed to this release. Thank you to the following cont
+- [`31c168c`](https://github.com/stdlib-js/stdlib/commit/31c168c72351f2885bcf7361b9168cefb454f6dc) - **fix:** add missing `f` suffix in `constants/float32/ln-two` [(#3110)](https://github.com/stdlib-js/stdlib/pull/3110) _(by Gunj Joshi)_ - [`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)_ - [`a4ca598`](https://github.com/stdlib-js/stdlib/commit/a4ca5986c4a9816d627387004026ec96539c81f9) - **feat:** add `constants/float32/min-base10-exponent-subnormal` [(#3100)](https://github.com/stdlib-js/stdlib/pull/3100) _(by Aayush Khanna)_ - [`951fbd2`](https://github.com/stdlib-js/stdlib/commit/951fbd24ae17d11d75cb4a9c321ddc2e62eecd30) - **feat:** add `constants/float32/e` [(#3101)](https://github.com/stdlib-js/stdlib/pull/3101) _(by Gururaj Gurram, Philipp Burckhardt)_ diff --git a/CONTRIBUTORS b/CONTRIBUTORS index c9f811c..2024aac 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -69,6 +69,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 +80,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/float32/ln-two/include/stdlib/constants/float32/ln_two.h b/float32/ln-two/include/stdlib/constants/float32/ln_two.h index 366acb7..d3d49c3 100644 --- a/float32/ln-two/include/stdlib/constants/float32/ln_two.h +++ b/float32/ln-two/include/stdlib/constants/float32/ln_two.h @@ -22,6 +22,6 @@ /** * Macro for the natural logarithm of `2` as a single-precision floating-point number. */ -#define STDLIB_CONSTANT_FLOAT32_LN2 0.6931471824645996 +#define STDLIB_CONSTANT_FLOAT32_LN2 0.6931471824645996f #endif // !STDLIB_CONSTANTS_FLOAT32_LN2_H