@stdlib/random-base 0.1.1 → 0.2.0

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/LICENSE CHANGED
@@ -181,32 +181,6 @@ The library links against the following external libraries or contains
181
181
  implementations from the following external libraries, which have their own
182
182
  licenses:
183
183
 
184
- * Boost <http://www.boost.org/LICENSE_1_0.txt>
185
-
186
- Boost Software License - Version 1.0 - August 17th, 2003
187
-
188
- Permission is hereby granted, free of charge, to any person or organization
189
- obtaining a copy of the software and accompanying documentation covered by
190
- this license (the "Software") to use, reproduce, display, distribute,
191
- execute, and transmit the Software, and to prepare derivative works of the
192
- Software, and to permit third-parties to whom the Software is furnished to
193
- do so, all subject to the following:
194
-
195
- The copyright notices in the Software and this entire statement, including
196
- the above license grant, this restriction and the following disclaimer,
197
- must be included in all copies of the Software, in whole or in part, and
198
- all derivative works of the Software, unless such copies or derivative
199
- works are solely in the form of machine-executable object code generated by
200
- a source language processor.
201
-
202
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204
- FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
205
- SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
206
- FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
207
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
208
- DEALINGS IN THE SOFTWARE.
209
-
210
184
  * MT19937 <http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/
211
185
  mt19937ar.c>
212
186
 
@@ -240,3 +214,29 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
240
214
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
241
215
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
242
216
 
217
+ * Boost <http://www.boost.org/LICENSE_1_0.txt>
218
+
219
+ Boost Software License - Version 1.0 - August 17th, 2003
220
+
221
+ Permission is hereby granted, free of charge, to any person or organization
222
+ obtaining a copy of the software and accompanying documentation covered by
223
+ this license (the "Software") to use, reproduce, display, distribute,
224
+ execute, and transmit the Software, and to prepare derivative works of the
225
+ Software, and to permit third-parties to whom the Software is furnished to
226
+ do so, all subject to the following:
227
+
228
+ The copyright notices in the Software and this entire statement, including
229
+ the above license grant, this restriction and the following disclaimer,
230
+ must be included in all copies of the Software, in whole or in part, and
231
+ all derivative works of the Software, unless such copies or derivative
232
+ works are solely in the form of machine-executable object code generated by
233
+ a source language processor.
234
+
235
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
236
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
237
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
238
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
239
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
240
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
241
+ DEALINGS IN THE SOFTWARE.
242
+
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -223,7 +223,7 @@ See [LICENSE][stdlib-license].
223
223
 
224
224
  ## Copyright
225
225
 
226
- Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
226
+ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
227
227
 
228
228
  </section>
229
229
 
@@ -236,8 +236,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
236
236
  [npm-image]: http://img.shields.io/npm/v/@stdlib/random-base.svg
237
237
  [npm-url]: https://npmjs.org/package/@stdlib/random-base
238
238
 
239
- [test-image]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml/badge.svg?branch=v0.1.1
240
- [test-url]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml?query=branch:v0.1.1
239
+ [test-image]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml/badge.svg?branch=v0.2.0
240
+ [test-url]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml?query=branch:v0.2.0
241
241
 
242
242
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-base/main.svg
243
243
  [coverage-url]: https://codecov.io/github/stdlib-js/random-base?branch=main
@@ -260,8 +260,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
260
260
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
261
261
 
262
262
  [deno-url]: https://github.com/stdlib-js/random-base/tree/deno
263
+ [deno-readme]: https://github.com/stdlib-js/random-base/blob/deno/README.md
263
264
  [umd-url]: https://github.com/stdlib-js/random-base/tree/umd
265
+ [umd-readme]: https://github.com/stdlib-js/random-base/blob/umd/README.md
264
266
  [esm-url]: https://github.com/stdlib-js/random-base/tree/esm
267
+ [esm-readme]: https://github.com/stdlib-js/random-base/blob/esm/README.md
265
268
  [branches-url]: https://github.com/stdlib-js/random-base/blob/main/branches.md
266
269
 
267
270
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/random-base/main/LICENSE
@@ -927,8 +927,8 @@ interface Namespace {
927
927
  * @returns value or PRNG
928
928
  *
929
929
  * @example
930
- * var parseJSON = require( `@stdlib/utils/parse-json` );
931
- * var mt19937 = require( `@stdlib/random/base/mt19937` );
930
+ * var parseJSON = require( '@stdlib/utils-parse-json' );
931
+ * var mt19937 = require( '@stdlib/random-base-mt19937' );
932
932
  *
933
933
  * var str = JSON.stringify( mt19937 );
934
934
  * var rand = parseJSON( str, ns.reviveBasePRNG );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/random-base",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Base pseudorandom number generators.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -39,131 +39,131 @@
39
39
  "url": "https://github.com/stdlib-js/stdlib/issues"
40
40
  },
41
41
  "dependencies": {
42
- "@stdlib/random-base-arcsine": "^0.1.0",
43
- "@stdlib/random-base-bernoulli": "^0.1.0",
44
- "@stdlib/random-base-beta": "^0.1.0",
45
- "@stdlib/random-base-betaprime": "^0.1.0",
46
- "@stdlib/random-base-binomial": "^0.1.0",
47
- "@stdlib/random-base-box-muller": "^0.1.0",
48
- "@stdlib/random-base-cauchy": "^0.1.0",
49
- "@stdlib/random-base-chi": "^0.1.0",
50
- "@stdlib/random-base-chisquare": "^0.1.0",
42
+ "@stdlib/random-base-arcsine": "^0.2.0",
43
+ "@stdlib/random-base-bernoulli": "^0.2.0",
44
+ "@stdlib/random-base-beta": "^0.2.0",
45
+ "@stdlib/random-base-betaprime": "^0.2.0",
46
+ "@stdlib/random-base-binomial": "^0.2.0",
47
+ "@stdlib/random-base-box-muller": "^0.2.0",
48
+ "@stdlib/random-base-cauchy": "^0.2.0",
49
+ "@stdlib/random-base-chi": "^0.2.0",
50
+ "@stdlib/random-base-chisquare": "^0.2.0",
51
51
  "@stdlib/random-base-cosine": "^0.1.0",
52
- "@stdlib/random-base-discrete-uniform": "^0.1.0",
53
- "@stdlib/random-base-erlang": "^0.1.0",
54
- "@stdlib/random-base-exponential": "^0.1.0",
55
- "@stdlib/random-base-f": "^0.1.0",
56
- "@stdlib/random-base-frechet": "^0.1.0",
52
+ "@stdlib/random-base-discrete-uniform": "^0.2.0",
53
+ "@stdlib/random-base-erlang": "^0.2.0",
54
+ "@stdlib/random-base-exponential": "^0.2.0",
55
+ "@stdlib/random-base-f": "^0.2.0",
56
+ "@stdlib/random-base-frechet": "^0.2.0",
57
57
  "@stdlib/random-base-gamma": "^0.1.0",
58
- "@stdlib/random-base-geometric": "^0.1.0",
59
- "@stdlib/random-base-gumbel": "^0.1.0",
60
- "@stdlib/random-base-hypergeometric": "^0.1.0",
61
- "@stdlib/random-base-improved-ziggurat": "^0.1.0",
62
- "@stdlib/random-base-invgamma": "^0.1.0",
63
- "@stdlib/random-base-kumaraswamy": "^0.1.0",
64
- "@stdlib/random-base-laplace": "^0.1.0",
65
- "@stdlib/random-base-levy": "^0.1.0",
66
- "@stdlib/random-base-logistic": "^0.1.0",
67
- "@stdlib/random-base-lognormal": "^0.1.0",
68
- "@stdlib/random-base-minstd": "^0.1.0",
69
- "@stdlib/random-base-minstd-shuffle": "^0.1.0",
70
- "@stdlib/random-base-mt19937": "^0.1.0",
71
- "@stdlib/random-base-negative-binomial": "^0.1.0",
72
- "@stdlib/random-base-normal": "^0.1.0",
73
- "@stdlib/random-base-pareto-type1": "^0.1.0",
74
- "@stdlib/random-base-poisson": "^0.1.0",
75
- "@stdlib/random-base-randi": "^0.1.0",
76
- "@stdlib/random-base-randn": "^0.1.0",
77
- "@stdlib/random-base-randu": "^0.1.0",
78
- "@stdlib/random-base-rayleigh": "^0.1.0",
58
+ "@stdlib/random-base-geometric": "^0.2.0",
59
+ "@stdlib/random-base-gumbel": "^0.2.0",
60
+ "@stdlib/random-base-hypergeometric": "^0.2.0",
61
+ "@stdlib/random-base-improved-ziggurat": "^0.2.0",
62
+ "@stdlib/random-base-invgamma": "^0.2.0",
63
+ "@stdlib/random-base-kumaraswamy": "^0.2.0",
64
+ "@stdlib/random-base-laplace": "^0.2.0",
65
+ "@stdlib/random-base-levy": "^0.2.0",
66
+ "@stdlib/random-base-logistic": "^0.2.0",
67
+ "@stdlib/random-base-lognormal": "^0.2.0",
68
+ "@stdlib/random-base-minstd": "^0.2.0",
69
+ "@stdlib/random-base-minstd-shuffle": "^0.2.0",
70
+ "@stdlib/random-base-mt19937": "^0.2.0",
71
+ "@stdlib/random-base-negative-binomial": "^0.2.0",
72
+ "@stdlib/random-base-normal": "^0.2.0",
73
+ "@stdlib/random-base-pareto-type1": "^0.2.0",
74
+ "@stdlib/random-base-poisson": "^0.2.0",
75
+ "@stdlib/random-base-randi": "^0.2.0",
76
+ "@stdlib/random-base-randn": "^0.2.0",
77
+ "@stdlib/random-base-randu": "^0.2.0",
78
+ "@stdlib/random-base-rayleigh": "^0.2.0",
79
79
  "@stdlib/random-base-reviver": "^0.1.0",
80
- "@stdlib/random-base-t": "^0.1.0",
81
- "@stdlib/random-base-triangular": "^0.1.0",
82
- "@stdlib/random-base-uniform": "^0.1.0",
83
- "@stdlib/random-base-weibull": "^0.1.0",
84
- "@stdlib/utils-define-read-only-property": "^0.1.1",
85
- "@stdlib/utils-library-manifest": "^0.1.1"
80
+ "@stdlib/random-base-t": "^0.2.0",
81
+ "@stdlib/random-base-triangular": "^0.2.0",
82
+ "@stdlib/random-base-uniform": "^0.2.0",
83
+ "@stdlib/random-base-weibull": "^0.2.0",
84
+ "@stdlib/utils-define-read-only-property": "^0.2.0",
85
+ "@stdlib/utils-library-manifest": "^0.2.0"
86
86
  },
87
87
  "devDependencies": {
88
- "@stdlib/array-int32": "^0.1.1",
89
- "@stdlib/array-to-json": "^0.1.0",
90
- "@stdlib/array-uint32": "^0.1.1",
91
- "@stdlib/assert-contains": "^0.1.0",
92
- "@stdlib/assert-has-own-property": "^0.1.1",
93
- "@stdlib/assert-is-array": "^0.1.1",
94
- "@stdlib/assert-is-array-like-object": "^0.1.0",
95
- "@stdlib/assert-is-boolean": "^0.1.1",
96
- "@stdlib/assert-is-collection": "^0.1.0",
97
- "@stdlib/assert-is-function": "^0.1.1",
98
- "@stdlib/assert-is-int32array": "^0.1.1",
99
- "@stdlib/assert-is-integer": "^0.1.0",
100
- "@stdlib/assert-is-nan": "^0.1.1",
101
- "@stdlib/assert-is-nonnegative-integer": "^0.1.0",
102
- "@stdlib/assert-is-number": "^0.1.1",
103
- "@stdlib/assert-is-plain-object": "^0.1.1",
104
- "@stdlib/assert-is-positive-integer": "^0.1.0",
105
- "@stdlib/assert-is-positive-number": "^0.1.1",
106
- "@stdlib/assert-is-prng-like": "^0.1.1",
107
- "@stdlib/assert-is-probability": "^0.1.1",
108
- "@stdlib/assert-is-string": "^0.1.1",
109
- "@stdlib/assert-is-uint32array": "^0.1.1",
88
+ "@stdlib/array-int32": "^0.2.0",
89
+ "@stdlib/array-to-json": "^0.2.0",
90
+ "@stdlib/array-uint32": "^0.2.0",
91
+ "@stdlib/assert-contains": "^0.2.0",
92
+ "@stdlib/assert-has-own-property": "^0.2.0",
93
+ "@stdlib/assert-is-array": "^0.2.0",
94
+ "@stdlib/assert-is-array-like-object": "^0.2.0",
95
+ "@stdlib/assert-is-boolean": "^0.2.0",
96
+ "@stdlib/assert-is-collection": "^0.2.0",
97
+ "@stdlib/assert-is-function": "^0.2.0",
98
+ "@stdlib/assert-is-int32array": "^0.2.0",
99
+ "@stdlib/assert-is-integer": "^0.2.0",
100
+ "@stdlib/assert-is-nan": "^0.2.0",
101
+ "@stdlib/assert-is-nonnegative-integer": "^0.2.0",
102
+ "@stdlib/assert-is-number": "^0.2.0",
103
+ "@stdlib/assert-is-plain-object": "^0.2.0",
104
+ "@stdlib/assert-is-positive-integer": "^0.2.0",
105
+ "@stdlib/assert-is-positive-number": "^0.2.0",
106
+ "@stdlib/assert-is-prng-like": "^0.2.0",
107
+ "@stdlib/assert-is-probability": "^0.2.0",
108
+ "@stdlib/assert-is-string": "^0.2.0",
109
+ "@stdlib/assert-is-uint32array": "^0.2.0",
110
110
  "@stdlib/blas-base-gcopy": "^0.1.0",
111
- "@stdlib/constants-float64-eps": "^0.1.1",
112
- "@stdlib/constants-float64-half-pi": "^0.1.1",
113
- "@stdlib/constants-float64-ln-sqrt-two-pi": "^0.1.1",
114
- "@stdlib/constants-float64-max-safe-integer": "^0.1.1",
115
- "@stdlib/constants-float64-pi": "^0.1.1",
116
- "@stdlib/constants-float64-pinf": "^0.1.1",
117
- "@stdlib/constants-float64-two-pi": "^0.1.1",
118
- "@stdlib/constants-int32-max": "^0.1.1",
119
- "@stdlib/constants-uint32-max": "^0.1.1",
120
- "@stdlib/fs-exists": "^0.1.1",
121
- "@stdlib/fs-read-dir": "^0.1.1",
122
- "@stdlib/fs-write-file": "^0.1.1",
123
- "@stdlib/math-base-assert-is-integer": "^0.1.1",
124
- "@stdlib/math-base-assert-is-nan": "^0.1.1",
125
- "@stdlib/math-base-assert-is-nonnegative-integer": "^0.1.1",
126
- "@stdlib/math-base-assert-is-positive-integer": "^0.1.1",
127
- "@stdlib/math-base-assert-is-probability": "^0.1.1",
128
- "@stdlib/math-base-ops-umul": "^0.1.1",
129
- "@stdlib/math-base-special-abs": "^0.1.1",
130
- "@stdlib/math-base-special-ceil": "^0.1.1",
131
- "@stdlib/math-base-special-cos": "^0.1.0",
132
- "@stdlib/math-base-special-exp": "^0.1.0",
133
- "@stdlib/math-base-special-factorial": "^0.1.0",
134
- "@stdlib/math-base-special-factorialln": "^0.1.0",
135
- "@stdlib/math-base-special-floor": "^0.1.1",
136
- "@stdlib/math-base-special-ln": "^0.1.1",
137
- "@stdlib/math-base-special-max": "^0.1.1",
138
- "@stdlib/math-base-special-pow": "^0.1.0",
139
- "@stdlib/math-base-special-round": "^0.1.1",
140
- "@stdlib/math-base-special-signum": "^0.1.1",
141
- "@stdlib/math-base-special-sin": "^0.1.0",
142
- "@stdlib/math-base-special-sqrt": "^0.1.1",
143
- "@stdlib/math-base-special-tan": "^0.1.0",
144
- "@stdlib/object-assign": "^0.1.0",
145
- "@stdlib/process-env": "^0.1.1",
146
- "@stdlib/stats-base-dists-cosine-quantile": "^0.1.0",
147
- "@stdlib/stats-base-dists-normal-quantile": "^0.1.1",
148
- "@stdlib/stats-chi2gof": "^0.1.0",
149
- "@stdlib/stats-kstest": "^0.1.0",
150
- "@stdlib/string-format": "^0.1.1",
151
- "@stdlib/time-current-year": "^0.1.1",
152
- "@stdlib/time-now": "^0.1.1",
153
- "@stdlib/utils-constant-function": "^0.1.1",
154
- "@stdlib/utils-copy": "^0.1.0",
155
- "@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.1",
156
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
157
- "@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.1.1",
158
- "@stdlib/utils-keys": "^0.1.0",
159
- "@stdlib/utils-noop": "^0.1.1",
160
- "@stdlib/utils-parse-json": "^0.1.1",
111
+ "@stdlib/constants-float64-eps": "^0.2.0",
112
+ "@stdlib/constants-float64-half-pi": "^0.2.0",
113
+ "@stdlib/constants-float64-ln-sqrt-two-pi": "^0.2.0",
114
+ "@stdlib/constants-float64-max-safe-integer": "^0.2.0",
115
+ "@stdlib/constants-float64-pi": "^0.2.0",
116
+ "@stdlib/constants-float64-pinf": "^0.2.0",
117
+ "@stdlib/constants-float64-two-pi": "^0.2.0",
118
+ "@stdlib/constants-int32-max": "^0.2.0",
119
+ "@stdlib/constants-uint32-max": "^0.2.0",
120
+ "@stdlib/fs-exists": "^0.2.0",
121
+ "@stdlib/fs-read-dir": "^0.2.0",
122
+ "@stdlib/fs-write-file": "^0.2.0",
123
+ "@stdlib/math-base-assert-is-integer": "^0.2.0",
124
+ "@stdlib/math-base-assert-is-nan": "^0.2.0",
125
+ "@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.0",
126
+ "@stdlib/math-base-assert-is-positive-integer": "^0.2.0",
127
+ "@stdlib/math-base-assert-is-probability": "^0.2.0",
128
+ "@stdlib/math-base-ops-umul": "^0.2.0",
129
+ "@stdlib/math-base-special-abs": "^0.2.0",
130
+ "@stdlib/math-base-special-ceil": "^0.2.0",
131
+ "@stdlib/math-base-special-cos": "^0.2.0",
132
+ "@stdlib/math-base-special-exp": "^0.2.0",
133
+ "@stdlib/math-base-special-factorial": "^0.2.0",
134
+ "@stdlib/math-base-special-factorialln": "^0.2.0",
135
+ "@stdlib/math-base-special-floor": "^0.2.0",
136
+ "@stdlib/math-base-special-ln": "^0.2.0",
137
+ "@stdlib/math-base-special-max": "^0.2.0",
138
+ "@stdlib/math-base-special-pow": "^0.2.0",
139
+ "@stdlib/math-base-special-round": "^0.2.0",
140
+ "@stdlib/math-base-special-signum": "^0.2.0",
141
+ "@stdlib/math-base-special-sin": "^0.2.0",
142
+ "@stdlib/math-base-special-sqrt": "^0.2.0",
143
+ "@stdlib/math-base-special-tan": "^0.2.0",
144
+ "@stdlib/object-assign": "^0.2.0",
145
+ "@stdlib/process-env": "^0.2.0",
146
+ "@stdlib/stats-base-dists-cosine-quantile": "^0.2.0",
147
+ "@stdlib/stats-base-dists-normal-quantile": "^0.2.0",
148
+ "@stdlib/stats-chi2gof": "^0.2.0",
149
+ "@stdlib/stats-kstest": "^0.2.0",
150
+ "@stdlib/string-format": "^0.2.0",
151
+ "@stdlib/time-current-year": "^0.2.0",
152
+ "@stdlib/time-now": "^0.2.0",
153
+ "@stdlib/utils-constant-function": "^0.2.0",
154
+ "@stdlib/utils-copy": "^0.2.0",
155
+ "@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
156
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
157
+ "@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.0",
158
+ "@stdlib/utils-keys": "^0.2.0",
159
+ "@stdlib/utils-noop": "^0.2.0",
160
+ "@stdlib/utils-parse-json": "^0.2.0",
161
161
  "proxyquire": "^2.0.0",
162
162
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
163
163
  "istanbul": "^0.4.1",
164
164
  "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
165
- "@stdlib/bench-harness": "^0.1.2",
166
- "@stdlib/bench": "^0.2.1"
165
+ "@stdlib/bench-harness": "^0.2.0",
166
+ "@stdlib/bench": "^0.3.1"
167
167
  },
168
168
  "engines": {
169
169
  "node": ">=0.10.0",