@stdlib/random-iter-improved-ziggurat 0.0.5 → 0.0.6

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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +35 -2
  3. package/package.json +1 -1
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # Standard Normal Random Numbers
22
22
 
23
- [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
23
+ [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
24
24
 
25
25
  > Create an iterator for generating pseudorandom numbers drawn from a [standard normal][normal] distribution using the [Improved Ziggurat][ziggurat-algorithm] algorithm.
26
26
 
@@ -217,6 +217,22 @@ while ( true ) {
217
217
 
218
218
  <!-- /.references -->
219
219
 
220
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
221
+
222
+ <section class="related">
223
+
224
+ * * *
225
+
226
+ ## See Also
227
+
228
+ - <span class="package-name">[`@stdlib/random/base/improved-ziggurat`][@stdlib/random/base/improved-ziggurat]</span><span class="delimiter">: </span><span class="description">normally distributed pseudorandom numbers using the improved Ziggurat method.</span>
229
+
230
+ </section>
231
+
232
+ <!-- /.related -->
233
+
234
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
235
+
220
236
 
221
237
  <section class="main-repo" >
222
238
 
@@ -241,7 +257,7 @@ See [LICENSE][stdlib-license].
241
257
 
242
258
  ## Copyright
243
259
 
244
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
260
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
245
261
 
246
262
  </section>
247
263
 
@@ -260,9 +276,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
260
276
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-iter-improved-ziggurat/main.svg
261
277
  [coverage-url]: https://codecov.io/github/stdlib-js/random-iter-improved-ziggurat?branch=main
262
278
 
279
+ <!--
280
+
263
281
  [dependencies-image]: https://img.shields.io/david/stdlib-js/random-iter-improved-ziggurat.svg
264
282
  [dependencies-url]: https://david-dm.org/stdlib-js/random-iter-improved-ziggurat/main
265
283
 
284
+ -->
285
+
286
+ [umd]: https://github.com/umdjs/umd
287
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
288
+
289
+ [deno-url]: https://github.com/stdlib-js/random-iter-improved-ziggurat/tree/deno
290
+ [umd-url]: https://github.com/stdlib-js/random-iter-improved-ziggurat/tree/umd
291
+ [esm-url]: https://github.com/stdlib-js/random-iter-improved-ziggurat/tree/esm
292
+
266
293
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
267
294
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
268
295
 
@@ -284,6 +311,12 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
284
311
 
285
312
  [@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32
286
313
 
314
+ <!-- <related-links> -->
315
+
316
+ [@stdlib/random/base/improved-ziggurat]: https://www.npmjs.com/package/@stdlib/random-base-improved-ziggurat
317
+
318
+ <!-- </related-links> -->
319
+
287
320
  </section>
288
321
 
289
322
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/random-iter-improved-ziggurat",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Create an iterator for generating pseudorandom numbers drawn from a standard normal distribution using the Improved Ziggurat algorithm.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {