diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-05-09 09:15:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 09:15:26 -0400 |
commit | d5dd5ae87d7598643a46f27fa4a11b2a85d42be8 (patch) | |
tree | a85263c25eda5d29669be039e6a83b58ac61a309 /std/version.ts | |
parent | 5de077ab6558129d57e1212e0896caa5d5318eb1 (diff) |
std/0.50.0
Add std/version.ts and document unstableness of std.
Diffstat (limited to 'std/version.ts')
-rw-r--r-- | std/version.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/std/version.ts b/std/version.ts new file mode 100644 index 000000000..835b0f38c --- /dev/null +++ b/std/version.ts @@ -0,0 +1,7 @@ +/** Version of the Deno standard modules + * + * Deno std is versioned differently than Deno cli because it is still unstable; + * the cli's API is stable. In the future when std becomes stable, likely we + * will match versions with cli as we have in the past. + */ +export const VERSION = "0.50.0"; |