Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v0.2.1 #46

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ jobs:
name: Check ABI files are up-to-date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: WebAssembly/wit-abi-up-to-date@v21
with:
wit-bindgen: '0.28.0'
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_0_2_0"><code>wasi:random/[email protected].0</code></a></li>
<li>interface <a href="#wasi_random_insecure_0_2_0"><code>wasi:random/[email protected].0</code></a></li>
<li>interface <a href="#wasi_random_insecure_seed_0_2_0"><code>wasi:random/[email protected].0</code></a></li>
<li>interface <a href="#wasi_random_random_0_2_1"><code>wasi:random/[email protected].1</code></a></li>
<li>interface <a href="#wasi_random_insecure_0_2_1"><code>wasi:random/[email protected].1</code></a></li>
<li>interface <a href="#wasi_random_insecure_seed_0_2_1"><code>wasi:random/[email protected].1</code></a></li>
</ul>
</li>
</ul>
<h2><a name="wasi_random_random_0_2_0"></a>Import interface wasi:random/[email protected].0</h2>
<h2><a name="wasi_random_random_0_2_1"></a>Import interface wasi:random/[email protected].1</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_0_2_0"></a>Import interface wasi:random/[email protected].0</h2>
<h2><a name="wasi_random_insecure_0_2_1"></a>Import interface wasi:random/[email protected].1</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_0_2_0"></a>Import interface wasi:random/[email protected].0</h2>
<h2><a name="wasi_random_insecure_seed_0_2_1"></a>Import interface wasi:random/[email protected].1</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
2 changes: 1 addition & 1 deletion wit/insecure-seed.wit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package wasi:[email protected].0;
package wasi:[email protected].1;
/// 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
2 changes: 1 addition & 1 deletion wit/insecure.wit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package wasi:[email protected].0;
package wasi:[email protected].1;
/// The insecure interface for insecure pseudo-random numbers.
///
/// It is intended to be portable at least between Unix-family platforms and
Expand Down
2 changes: 1 addition & 1 deletion wit/random.wit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package wasi:[email protected].0;
package wasi:[email protected].1;
/// 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:[email protected].0;
package wasi:[email protected].1;

@since(version = 0.2.0)
world imports {
Expand Down