Skip to content

Commit

Permalink
Merge pull request #37 from WebAssembly/pch/rc-2023-11-10
Browse files Browse the repository at this point in the history
set package version to 0.2.0-rc-2023-11-10
  • Loading branch information
Pat Hickey committed Nov 10, 2023
2 parents 1094cf3 + 357bf66 commit 0138a2c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
12 changes: 6 additions & 6 deletions imports.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<ul>
<li>Imports:
<ul>
<li>interface <a href="#wasi:random_random"><code>wasi:random/random</code></a></li>
<li>interface <a href="#wasi:random_insecure"><code>wasi:random/insecure</code></a></li>
<li>interface <a href="#wasi:random_insecure_seed"><code>wasi:random/insecure-seed</code></a></li>
<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>
<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>
<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>
</ul>
</li>
</ul>
<h2><a name="wasi:random_random">Import interface wasi:random/random</a></h2>
<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>
<p>WASI Random is a random data API.</p>
<p>It is intended to be portable at least between Unix-family platforms and
Windows.</p>
Expand Down Expand Up @@ -41,7 +41,7 @@ represented as a <code>u64</code>.</p>
<ul>
<li><a name="get_random_u64.0"></a> <code>u64</code></li>
</ul>
<h2><a name="wasi:random_insecure">Import interface wasi:random/insecure</a></h2>
<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>
<p>The insecure interface for insecure pseudo-random numbers.</p>
<p>It is intended to be portable at least between Unix-family platforms and
Windows.</p>
Expand Down Expand Up @@ -70,7 +70,7 @@ a long period.</p>
<ul>
<li><a name="get_insecure_random_u64.0"></a> <code>u64</code></li>
</ul>
<h2><a name="wasi:random_insecure_seed">Import interface wasi:random/insecure-seed</a></h2>
<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>
<p>The insecure-seed interface for seeding hash-map DoS resistance.</p>
<p>It is intended to be portable at least between Unix-family platforms and
Windows.</p>
Expand Down
1 change: 1 addition & 0 deletions wit/insecure-seed.wit
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package wasi:random@0.2.0-rc-2023-11-10;
/// The insecure-seed interface for seeding hash-map DoS resistance.
///
/// It is intended to be portable at least between Unix-family platforms and
Expand Down
1 change: 1 addition & 0 deletions wit/insecure.wit
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package wasi:random@0.2.0-rc-2023-11-10;
/// The insecure interface for insecure pseudo-random numbers.
///
/// It is intended to be portable at least between Unix-family platforms and
Expand Down
1 change: 1 addition & 0 deletions wit/random.wit
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package wasi:random@0.2.0-rc-2023-11-10;
/// WASI Random is a random data API.
///
/// It is intended to be portable at least between Unix-family platforms and
Expand Down
2 changes: 1 addition & 1 deletion wit/world.wit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package wasi:random;
package wasi:random@0.2.0-rc-2023-11-10;

world imports {
import random;
Expand Down

0 comments on commit 0138a2c

Please sign in to comment.