mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-13 07:01:00 -05:00
11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
/**
|
|
* @fileoverview Version of pyscript
|
|
* The version is based on calver which contains YEAR.MONTH.DAY.MODIFIER.
|
|
* The Modifier can be an optional text tag, such as "dev", "rc", etc.
|
|
*
|
|
* We are adding this file because we can't add version in main.js due to
|
|
* circular imports.
|
|
*/
|
|
|
|
export const version = '2022.12.1.dev';
|