diff --git a/CHANGELOG.md b/CHANGELOG.md index 4656367..cd72407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,19 @@ Changes are kept under subsections: Should be noted only functionnal changes, or major refactoring improvments. -## [2.0-alpha] - On Going +## [2.0.0] - YYYY-MM-DD - Message ### Fixed ### Changed ### New + +## [2.0.0-alpha.3] - 2023-11-03 - Display Input plot +### New +Show input data along with targets charts + +## [2.0.0-alpha.2] - 2023-10-30 - Speasy +### New +Change fetching lib to Speasy + +## [2.0.0-alpha.1] - 2023-10-23 - Notebooks +### New +Add notebooks capabilities diff --git a/VERSION b/VERSION deleted file mode 100644 index 1b0225c..0000000 --- a/VERSION +++ /dev/null @@ -1 +0,0 @@ -v2.0-alpha diff --git a/VERSION.txt b/VERSION.txt new file mode 100644 index 0000000..2f3402d --- /dev/null +++ b/VERSION.txt @@ -0,0 +1 @@ +v2.0.0-alpha.3 diff --git a/web/run.py b/web/run.py index 224a361..20ed981 100755 --- a/web/run.py +++ b/web/run.py @@ -50,7 +50,7 @@ def get_path(relative_path): # COLLECT GLOBAL INFORMATION FROM SOURCES ##################################### # VERSION -with open(get_path('../VERSION'), 'r') as version_file: +with open(get_path('../VERSION.txt'), 'r') as version_file: version = version_file.read().strip() # CONFIG -- libgit2 0.21.2