Skip to content

Commit 765203a

Browse files
author
Pat Hickey
authored
set package version to 0.2.0-rc-2023-11-10 (#57)
* set package version to 0.2.0-rc-2023-11-10 * generate markdown
1 parent a39776e commit 765203a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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:io_error"><code>wasi:io/error</code></a></li>
6-
<li>interface <a href="#wasi:io_poll"><code>wasi:io/poll</code></a></li>
7-
<li>interface <a href="#wasi:io_streams"><code>wasi:io/streams</code></a></li>
5+
<li>interface <a href="#wasi:io_error_0.2.0_rc_2023_11_10"><code>wasi:io/error@0.2.0-rc-2023-11-10</code></a></li>
6+
<li>interface <a href="#wasi:io_poll_0.2.0_rc_2023_11_10"><code>wasi:io/poll@0.2.0-rc-2023-11-10</code></a></li>
7+
<li>interface <a href="#wasi:io_streams_0.2.0_rc_2023_11_10"><code>wasi:io/streams@0.2.0-rc-2023-11-10</code></a></li>
88
</ul>
99
</li>
1010
</ul>
11-
<h2><a name="wasi:io_error">Import interface wasi:io/error</a></h2>
11+
<h2><a name="wasi:io_error_0.2.0_rc_2023_11_10">Import interface wasi:io/error@0.2.0-rc-2023-11-10</a></h2>
1212
<hr />
1313
<h3>Types</h3>
1414
<h4><a name="error"><code>resource error</code></a></h4>
@@ -29,7 +29,7 @@ hazard.</p>
2929
<ul>
3030
<li><a name="method_error.to_debug_string.0"></a> <code>string</code></li>
3131
</ul>
32-
<h2><a name="wasi:io_poll">Import interface wasi:io/poll</a></h2>
32+
<h2><a name="wasi:io_poll_0.2.0_rc_2023_11_10">Import interface wasi:io/poll@0.2.0-rc-2023-11-10</a></h2>
3333
<p>A poll API intended to let users wait for I/O events on multiple handles
3434
at once.</p>
3535
<hr />
@@ -79,7 +79,7 @@ being reaedy for I/O.</p>
7979
<ul>
8080
<li><a name="poll.0"></a> list&lt;<code>u32</code>&gt;</li>
8181
</ul>
82-
<h2><a name="wasi:io_streams">Import interface wasi:io/streams</a></h2>
82+
<h2><a name="wasi:io_streams_0.2.0_rc_2023_11_10">Import interface wasi:io/streams@0.2.0-rc-2023-11-10</a></h2>
8383
<p>WASI I/O is an I/O abstraction API which is currently focused on providing
8484
stream types.</p>
8585
<p>In the future, the component model is expected to add built-in stream types;

wit/error.wit

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

33

44
interface error {

wit/poll.wit

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

33
/// A poll API intended to let users wait for I/O events on multiple handles
44
/// at once.

wit/streams.wit

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

33
/// WASI I/O is an I/O abstraction API which is currently focused on providing
44
/// stream types.

wit/world.wit

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

33
world imports {
44
import streams;

0 commit comments

Comments
 (0)