From 1aa3300988feb4f966435853d8bcd89a811475b7 Mon Sep 17 00:00:00 2001
From: Colin Murphy
Date: Wed, 28 Feb 2024 14:20:29 -0500
Subject: [PATCH] Bump version.
---
imports.md | 12 ++++++------
wit/monotonic-clock.wit | 2 +-
wit/timezone.wit | 2 +-
wit/wall-clock.wit | 2 +-
wit/world.wit | 2 +-
5 files changed, 10 insertions(+), 10 deletions(-)
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.
-
+
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.
-
+
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.
-
+
Types
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;