Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

Commit f82ff61

Browse files
authored
Merge pull request #74 from WebAssembly/release-v0.2.8
Release v0.2.8
2 parents 87db7c7 + fd40e02 commit f82ff61

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

imports.md

Lines changed: 6 additions & 6 deletions
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_0_2_7"><code>wasi:random/[email protected].7</code></a></li>
6-
<li>interface <a href="#wasi_random_insecure_0_2_7"><code>wasi:random/[email protected].7</code></a></li>
7-
<li>interface <a href="#wasi_random_insecure_seed_0_2_7"><code>wasi:random/[email protected].7</code></a></li>
5+
<li>interface <a href="#wasi_random_random_0_2_8"><code>wasi:random/[email protected].8</code></a></li>
6+
<li>interface <a href="#wasi_random_insecure_0_2_8"><code>wasi:random/[email protected].8</code></a></li>
7+
<li>interface <a href="#wasi_random_insecure_seed_0_2_8"><code>wasi:random/[email protected].8</code></a></li>
88
</ul>
99
</li>
1010
</ul>
11-
<h2><a id="wasi_random_random_0_2_7"></a>Import interface wasi:random/[email protected].7</h2>
11+
<h2><a id="wasi_random_random_0_2_8"></a>Import interface wasi:random/[email protected].8</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 id="get_random_u64.0"></a> <code>u64</code></li>
4343
</ul>
44-
<h2><a id="wasi_random_insecure_0_2_7"></a>Import interface wasi:random/[email protected].7</h2>
44+
<h2><a id="wasi_random_insecure_0_2_8"></a>Import interface wasi:random/[email protected].8</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 id="get_insecure_random_u64.0"></a> <code>u64</code></li>
7272
</ul>
73-
<h2><a id="wasi_random_insecure_seed_0_2_7"></a>Import interface wasi:random/[email protected].7</h2>
73+
<h2><a id="wasi_random_insecure_seed_0_2_8"></a>Import interface wasi:random/[email protected].8</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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:random@0.2.7;
1+
package wasi:random@0.2.8;
22
/// The insecure-seed interface for seeding hash-map DoS resistance.
33
///
44
/// It is intended to be portable at least between Unix-family platforms and

wit/insecure.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:random@0.2.7;
1+
package wasi:random@0.2.8;
22
/// The insecure interface for insecure pseudo-random numbers.
33
///
44
/// It is intended to be portable at least between Unix-family platforms and

wit/random.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:random@0.2.7;
1+
package wasi:random@0.2.8;
22
/// WASI Random is a random data API.
33
///
44
/// It is intended to be portable at least between Unix-family platforms and

wit/world.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:random@0.2.7;
1+
package wasi:random@0.2.8;
22

33
@since(version = 0.2.0)
44
world imports {

0 commit comments

Comments
 (0)