Skip to content

Commit 13d1c82

Browse files
github-actions[bot]ricochet
authored andcommitted
Update to v0.2.6
1 parent 79d5c4b commit 13d1c82

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

imports.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<ul>
33
<li>Imports:
44
<ul>
5-
<li>interface <a href="#wasi_io_poll_0_2_5"><code>wasi:io/[email protected].5</code></a></li>
6-
<li>interface <a href="#wasi_clocks_monotonic_clock_0_2_5"><code>wasi:clocks/[email protected].5</code></a></li>
7-
<li>interface <a href="#wasi_clocks_wall_clock_0_2_5"><code>wasi:clocks/[email protected].5</code></a></li>
8-
<li>interface <a href="#wasi_clocks_timezone_0_2_5"><code>wasi:clocks/[email protected].5</code></a></li>
5+
<li>interface <a href="#wasi_io_poll_0_2_6"><code>wasi:io/[email protected].6</code></a></li>
6+
<li>interface <a href="#wasi_clocks_monotonic_clock_0_2_6"><code>wasi:clocks/[email protected].6</code></a></li>
7+
<li>interface <a href="#wasi_clocks_wall_clock_0_2_6"><code>wasi:clocks/[email protected].6</code></a></li>
8+
<li>interface <a href="#wasi_clocks_timezone_0_2_6"><code>wasi:clocks/[email protected].6</code></a></li>
99
</ul>
1010
</li>
1111
</ul>
12-
<h2><a id="wasi_io_poll_0_2_5"></a>Import interface wasi:io/[email protected].5</h2>
12+
<h2><a id="wasi_io_poll_0_2_6"></a>Import interface wasi:io/[email protected].6</h2>
1313
<p>A poll API intended to let users wait for I/O events on multiple handles
1414
at once.</p>
1515
<hr />
@@ -62,7 +62,7 @@ being ready for I/O.</p>
6262
<ul>
6363
<li><a id="poll.0"></a> list&lt;<code>u32</code>&gt;</li>
6464
</ul>
65-
<h2><a id="wasi_clocks_monotonic_clock_0_2_5"></a>Import interface wasi:clocks/[email protected].5</h2>
65+
<h2><a id="wasi_clocks_monotonic_clock_0_2_6"></a>Import interface wasi:clocks/[email protected].6</h2>
6666
<p>WASI Monotonic Clock is a clock API intended to let users measure elapsed
6767
time.</p>
6868
<p>It is intended to be portable at least between Unix-family platforms and
@@ -121,7 +121,7 @@ elapsed from the time this function is invoked.</p>
121121
<ul>
122122
<li><a id="subscribe_duration.0"></a> own&lt;<a href="#pollable"><a href="#pollable"><code>pollable</code></a></a>&gt;</li>
123123
</ul>
124-
<h2><a id="wasi_clocks_wall_clock_0_2_5"></a>Import interface wasi:clocks/[email protected].5</h2>
124+
<h2><a id="wasi_clocks_wall_clock_0_2_6"></a>Import interface wasi:clocks/[email protected].6</h2>
125125
<p>WASI Wall Clock is a clock API intended to let users query the current
126126
time. The name &quot;wall&quot; makes an analogy to a &quot;clock on the wall&quot;, which
127127
is not necessarily monotonic as it may be reset.</p>
@@ -162,7 +162,7 @@ also known as <a href="https://en.wikipedia.org/wiki/Unix_time">Unix Time</a>.</
162162
<ul>
163163
<li><a id="resolution.0"></a> <a href="#datetime"><a href="#datetime"><code>datetime</code></a></a></li>
164164
</ul>
165-
<h2><a id="wasi_clocks_timezone_0_2_5"></a>Import interface wasi:clocks/[email protected].5</h2>
165+
<h2><a id="wasi_clocks_timezone_0_2_6"></a>Import interface wasi:clocks/[email protected].6</h2>
166166
<hr />
167167
<h3>Types</h3>
168168
<h4><a id="datetime"></a><code>type datetime</code></h4>

wit/deps.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[io]
22
url = "https://github.com/WebAssembly/wasi-io/archive/main.tar.gz"
3-
sha256 = "749de54c05f7118dc118999ad69c5b63890ea1dd86f1be69270062195c7b79c2"
4-
sha512 = "b5096d518a7931c100594b9216bb4a98cd64533166bc7fdbb7465b48effc345863bd3ce2ec84fef59b273bae507edab08ec08975d56240ccef68f2494964e80a"
3+
sha256 = "671761f464d312e6c26bcaab5e79fe14ac876b72267867579d5c65e053fe2301"
4+
sha512 = "57e5ed34fa85f35899b324ac7a2473c5fa5cece51d07e6f077637191fadd3c8b6f79324d31a8d497a6ce7b92cfb2a2505ab894337e2c82889f1bdb21f4f24634"

wit/deps/io/error.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:io@0.2.5;
1+
package wasi:io@0.2.6;
22

33
@since(version = 0.2.0)
44
interface error {

wit/deps/io/poll.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:io@0.2.5;
1+
package wasi:io@0.2.6;
22

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

wit/deps/io/streams.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:io@0.2.5;
1+
package wasi:io@0.2.6;
22

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

wit/deps/io/world.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:io@0.2.5;
1+
package wasi:io@0.2.6;
22

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

wit/monotonic-clock.wit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.5;
1+
package wasi:clocks@0.2.6;
22
/// WASI Monotonic Clock is a clock API intended to let users measure elapsed
33
/// time.
44
///
@@ -10,7 +10,7 @@ package wasi:[email protected];
1010
@since(version = 0.2.0)
1111
interface monotonic-clock {
1212
@since(version = 0.2.0)
13-
use wasi:io/poll@0.2.5.{pollable};
13+
use wasi:io/poll@0.2.6.{pollable};
1414

1515
/// An instant in time, in nanoseconds. An instant is relative to an
1616
/// unspecified initial value, and can only be compared to instances from

wit/timezone.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.5;
1+
package wasi:clocks@0.2.6;
22

33
@unstable(feature = clocks-timezone)
44
interface timezone {

wit/wall-clock.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.5;
1+
package wasi:clocks@0.2.6;
22
/// WASI Wall Clock is a clock API intended to let users query the current
33
/// time. The name "wall" makes an analogy to a "clock on the wall", which
44
/// is not necessarily monotonic as it may be reset.

wit/world.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.5;
1+
package wasi:clocks@0.2.6;
22

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

0 commit comments

Comments
 (0)