Add version file (#1087)

This commit is contained in:
Fábio Rosado
2023-01-03 17:31:13 +00:00
committed by GitHub
parent dbdcd0b3d0
commit 412da2de08
6 changed files with 48 additions and 63 deletions

10
pyscriptjs/src/version.ts Normal file
View File

@@ -0,0 +1,10 @@
/**
* @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';