@thi.ng/random 2.4.4 → 2.4.8

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
@@ -3,18 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [2.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.3...@thi.ng/random@2.4.4) (2021-08-04)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * **random:** update weightedRandom() ([70afa70](https://github.com/thi-ng/umbrella/commit/70afa7097dfd21f85d947ab5f055d0c39589fd48))
12
-
13
-
14
-
15
-
16
-
17
- ## [2.4.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.2...@thi.ng/random@2.4.3) (2021-08-04)
6
+ ## [2.4.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.7...@thi.ng/random@2.4.8) (2021-09-03)
18
7
 
19
8
  **Note:** Version bump only for package @thi.ng/random
20
9
 
@@ -22,17 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
22
11
 
23
12
 
24
13
 
25
- ## [2.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.1...@thi.ng/random@2.4.2) (2021-07-01)
26
-
27
- **Note:** Version bump only for package @thi.ng/random
28
-
29
-
30
-
14
+ ## [2.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.3...@thi.ng/random@2.4.4) (2021-08-04)
31
15
 
32
16
 
33
- ## [2.4.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.0...@thi.ng/random@2.4.1) (2021-06-08)
17
+ ### Bug Fixes
34
18
 
35
- **Note:** Version bump only for package @thi.ng/random
19
+ * **random:** update weightedRandom() ([70afa70](https://github.com/thi-ng/umbrella/commit/70afa7097dfd21f85d947ab5f055d0c39589fd48))
36
20
 
37
21
 
38
22
 
package/README.md CHANGED
@@ -64,7 +64,7 @@ Partially ported from C implementations taken from [c.thi.ng](http://c.thi.ng).
64
64
 
65
65
  ### Related packages
66
66
 
67
- - [@thi.ng/ksuid](https://github.com/thi-ng/umbrella/tree/develop/packages/ksuid) - Configurable K-sortable unique identifiers, binary & base-N encoded
67
+ - [@thi.ng/ksuid](https://github.com/thi-ng/umbrella/tree/develop/packages/ksuid) - Configurable K-sortable unique IDs, ULIDs, binary & base-N encoded, 32/48/64bit time resolutions
68
68
 
69
69
  ## Installation
70
70
 
@@ -80,7 +80,7 @@ yarn add @thi.ng/random
80
80
  <script src="https://unpkg.com/@thi.ng/random/lib/index.umd.js" crossorigin></script>
81
81
  ```
82
82
 
83
- Package sizes (gzipped, pre-treeshake): ESM: 1.81 KB / CJS: 1.94 KB / UMD: 1.91 KB
83
+ Package sizes (gzipped, pre-treeshake): ESM: 1.81 KB / CJS: 1.95 KB / UMD: 1.91 KB
84
84
 
85
85
  ## Dependencies
86
86
 
@@ -97,7 +97,7 @@ directory are using this package.
97
97
  A selection:
98
98
 
99
99
  | Screenshot | Description | Live demo | Source |
100
- | --------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------- | --------------------------------------------------------------------------------- |
100
+ |:----------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------------------------------------|
101
101
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/color-themes.png" width="240"/> | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) |
102
102
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/fft-synth.png" width="240"/> | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) |
103
103
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-sorting.png" width="240"/> | Interactive pixel sorting tool using thi.ng/color & thi.ng/pixel | [Demo](https://demo.thi.ng/umbrella/pixel-sorting/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-sorting) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/random",
3
- "version": "2.4.4",
3
+ "version": "2.4.8",
4
4
  "description": "Pseudo-random number generators w/ unified API, distributions, weighted choices, ID generation",
5
5
  "module": "./index.js",
6
6
  "main": "./lib/index.js",
@@ -38,9 +38,9 @@
38
38
  "pub": "yarn build:release && yarn publish --access public"
39
39
  },
40
40
  "dependencies": {
41
- "@thi.ng/api": "^7.1.7",
42
- "@thi.ng/checks": "^2.9.8",
43
- "@thi.ng/hex": "^0.2.7"
41
+ "@thi.ng/api": "^7.2.0",
42
+ "@thi.ng/checks": "^2.9.11",
43
+ "@thi.ng/hex": "^1.0.4"
44
44
  },
45
45
  "files": [
46
46
  "*.js",
@@ -76,5 +76,5 @@
76
76
  "ksuid"
77
77
  ]
78
78
  },
79
- "gitHead": "5a289330f80e3c253c3b434655825c5dcfaebfd2"
79
+ "gitHead": "d971cb3f9b215a95483f78f1a8614015e331146f"
80
80
  }