@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 +7 -1
- package/README.md +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-10-
|
|
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
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.
|
|
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": "
|
|
160
|
+
"gitHead": "8301254c4436505a1fb0e3cc28eca3adb920c3e0\n"
|
|
161
161
|
}
|