mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d5dd5ae87d
Add std/version.ts and document unstableness of std.
7 lines
295 B
TypeScript
7 lines
295 B
TypeScript
/** 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";
|