Skip to content

Commit 0138a2c

Browse files
author
Pat Hickey
authored
Merge pull request #37 from WebAssembly/pch/rc-2023-11-10
set package version to 0.2.0-rc-2023-11-10
2 parents 1094cf3 + 357bf66 commit 0138a2c

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

imports.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<ul>
33
<li>Imports:
44
<ul>
5-
<li>interface <a href="#wasi:random_random"><code>wasi:random/random</code></a></li>
6-
<li>interface <a href="#wasi:random_insecure"><code>wasi:random/insecure</code></a></li>
7-
<li>interface <a href="#wasi:random_insecure_seed"><code>wasi:random/insecure-seed</code></a></li>
5+
<li>interface <a href="#wasi:random_random_0.2.0_rc_2023_11_10"><code>wasi:random/random@0.2.0-rc-2023-11-10</code></a></li>
6+
<li>interface <a href="#wasi:random_insecure_0.2.0_rc_2023_11_10"><code>wasi:random/insecure@0.2.0-rc-2023-11-10</code></a></li>
7+
<li>interface <a href="#wasi:random_insecure_seed_0.2.0_rc_2023_11_10"><code>wasi:random/insecure-seed@0.2.0-rc-2023-11-10</code></a></li>
88
</ul>
99
</li>
1010
</ul>
11-
<h2><a name="wasi:random_random">Import interface wasi:random/random</a></h2>
11+
<h2><a name="wasi:random_random_0.2.0_rc_2023_11_10">Import interface wasi:random/random@0.2.0-rc-2023-11-10</a></h2>
1212
<p>WASI Random is a random data API.</p>
1313
<p>It is intended to be portable at least between Unix-family platforms and
1414
Windows.</p>
@@ -41,7 +41,7 @@ represented as a <code>u64</code>.</p>
4141
<ul>
4242
<li><a name="get_random_u64.0"></a> <code>u64</code></li>
4343
</ul>
44-
<h2><a name="wasi:random_insecure">Import interface wasi:random/insecure</a></h2>
44+
<h2><a name="wasi:random_insecure_0.2.0_rc_2023_11_10">Import interface wasi:random/insecure@0.2.0-rc-2023-11-10</a></h2>
4545
<p>The insecure interface for insecure pseudo-random numbers.</p>
4646
<p>It is intended to be portable at least between Unix-family platforms and
4747
Windows.</p>
@@ -70,7 +70,7 @@ a long period.</p>
7070
<ul>
7171
<li><a name="get_insecure_random_u64.0"></a> <code>u64</code></li>
7272
</ul>
73-
<h2><a name="wasi:random_insecure_seed">Import interface wasi:random/insecure-seed</a></h2>
73+
<h2><a name="wasi:random_insecure_seed_0.2.0_rc_2023_11_10">Import interface wasi:random/insecure-seed@0.2.0-rc-2023-11-10</a></h2>
7474
<p>The insecure-seed interface for seeding hash-map DoS resistance.</p>
7575
<p>It is intended to be portable at least between Unix-family platforms and
7676
Windows.</p>

wit/insecure-seed.wit

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
package wasi:random@0.2.0-rc-2023-11-10;
12
/// The insecure-seed interface for seeding hash-map DoS resistance.
23
///
34
/// It is intended to be portable at least between Unix-family platforms and

wit/insecure.wit

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
package wasi:random@0.2.0-rc-2023-11-10;
12
/// The insecure interface for insecure pseudo-random numbers.
23
///
34
/// It is intended to be portable at least between Unix-family platforms and

wit/random.wit

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
package wasi:random@0.2.0-rc-2023-11-10;
12
/// WASI Random is a random data API.
23
///
34
/// It is intended to be portable at least between Unix-family platforms and

wit/world.wit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:random;
1+
package wasi:random@0.2.0-rc-2023-11-10;
22

33
world imports {
44
import random;

0 commit comments

Comments
 (0)