@thi.ng/random 4.1.0 → 4.1.2

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-10-05T12:12:32Z
3
+ - **Last updated**: 2024-10-17T15:38:52Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [4.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/random@4.1.1) (2024-10-07)
13
+
14
+ #### 🩹 Bug fixes
15
+
16
+ - add missing pkg export (WrappedRandom) ([8e4f7d5](https://github.com/thi-ng/umbrella/commit/8e4f7d5))
17
+
12
18
  ## [4.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/random@4.1.0) (2024-10-05)
13
19
 
14
20
  #### 🚀 Features
package/README.md CHANGED
@@ -110,7 +110,7 @@ For Node.js REPL:
110
110
  const rnd = await import("@thi.ng/random");
111
111
  ```
112
112
 
113
- Package sizes (brotli'd, pre-treeshake): ESM: 1.92 KB
113
+ Package sizes (brotli'd, pre-treeshake): ESM: 1.93 KB
114
114
 
115
115
  ## Dependencies
116
116
 
package/index.d.ts CHANGED
@@ -16,6 +16,7 @@ export * from "./system.js";
16
16
  export * from "./unique-indices.js";
17
17
  export * from "./weighted-probability.js";
18
18
  export * from "./weighted-random.js";
19
+ export * from "./wrapped.js";
19
20
  export * from "./xorshift128.js";
20
21
  export * from "./xorwow.js";
21
22
  export * from "./xoshiro128.js";
package/index.js CHANGED
@@ -16,6 +16,7 @@ export * from "./system.js";
16
16
  export * from "./unique-indices.js";
17
17
  export * from "./weighted-probability.js";
18
18
  export * from "./weighted-random.js";
19
+ export * from "./wrapped.js";
19
20
  export * from "./xorshift128.js";
20
21
  export * from "./xorwow.js";
21
22
  export * from "./xoshiro128.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/random",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "Pseudo-random number generators w/ unified API, distributions, weighted choices, ID generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -157,5 +157,5 @@
157
157
  "ksuid"
158
158
  ]
159
159
  },
160
- "gitHead": "11ae480076e61a2263f5730ffb37dfddbf01c7d1\n"
160
+ "gitHead": "8301254c4436505a1fb0e3cc28eca3adb920c3e0\n"
161
161
  }