diff --git a/imports.md b/imports.md index a922864..52ddddc 100644 --- a/imports.md +++ b/imports.md @@ -3,9 +3,9 @@
  • Imports:
  • @@ -59,7 +59,7 @@ being reaedy for I/O.

    -

    Import interface wasi:clocks/monotonic-clock@0.2.0

    +

    Import interface wasi:clocks/monotonic-clock@0.2.1-draft

    WASI Monotonic Clock is a clock API intended to let users measure elapsed time.

    It is intended to be portable at least between Unix-family platforms and @@ -120,7 +120,7 @@ occured.

    -

    Import interface wasi:clocks/wall-clock@0.2.0

    +

    Import interface wasi:clocks/wall-clock@0.2.1-draft

    WASI Wall Clock is a clock API intended to let users query the current time. The name "wall" makes an analogy to a "clock on the wall", which is not necessarily monotonic as it may be reset.

    @@ -161,7 +161,7 @@ also known as Unix Time.
  • datetime
  • -

    Import interface wasi:clocks/timezone@0.2.0

    +

    Import interface wasi:clocks/timezone@0.2.1-draft


    Types

    type datetime

    diff --git a/wit/monotonic-clock.wit b/wit/monotonic-clock.wit index 4e4dc3a..86cd9fd 100644 --- a/wit/monotonic-clock.wit +++ b/wit/monotonic-clock.wit @@ -1,4 +1,4 @@ -package wasi:clocks@0.2.0; +package wasi:clocks@0.2.1-draft; /// WASI Monotonic Clock is a clock API intended to let users measure elapsed /// time. /// diff --git a/wit/timezone.wit b/wit/timezone.wit index 621407f..3c79ed0 100644 --- a/wit/timezone.wit +++ b/wit/timezone.wit @@ -1,4 +1,4 @@ -package wasi:clocks@0.2.0; +package wasi:clocks@0.2.1-draft; interface timezone { use wall-clock.{datetime}; diff --git a/wit/wall-clock.wit b/wit/wall-clock.wit index 440ca0f..e68f774 100644 --- a/wit/wall-clock.wit +++ b/wit/wall-clock.wit @@ -1,4 +1,4 @@ -package wasi:clocks@0.2.0; +package wasi:clocks@0.2.1-draft; /// WASI Wall Clock is a clock API intended to let users query the current /// time. The name "wall" makes an analogy to a "clock on the wall", which /// is not necessarily monotonic as it may be reset. diff --git a/wit/world.wit b/wit/world.wit index 6b23bc8..6965fc9 100644 --- a/wit/world.wit +++ b/wit/world.wit @@ -1,4 +1,4 @@ -package wasi:clocks@0.2.0; +package wasi:clocks@0.2.1-draft; world imports { import monotonic-clock;