Commit 20dde75fb181299af78157f2f62c92c5b4640383
1 parent
5128eb27
Exists in
rhitier-dev
Record changes before merge
Showing
4 changed files
with
15 additions
and
3 deletions
Show diff stats
CHANGELOG.md
@@ -22,7 +22,19 @@ Changes are kept under subsections: | @@ -22,7 +22,19 @@ Changes are kept under subsections: | ||
22 | Should be noted only functionnal changes, | 22 | Should be noted only functionnal changes, |
23 | or major refactoring improvments. | 23 | or major refactoring improvments. |
24 | 24 | ||
25 | -## [2.0-alpha] - On Going | 25 | +## [2.0.0] - YYYY-MM-DD - Message |
26 | ### Fixed | 26 | ### Fixed |
27 | ### Changed | 27 | ### Changed |
28 | ### New | 28 | ### New |
29 | + | ||
30 | +## [2.0.0-alpha.3] - 2023-11-03 - Display Input plot | ||
31 | +### New | ||
32 | +Show input data along with targets charts | ||
33 | + | ||
34 | +## [2.0.0-alpha.2] - 2023-10-30 - Speasy | ||
35 | +### New | ||
36 | +Change fetching lib to Speasy | ||
37 | + | ||
38 | +## [2.0.0-alpha.1] - 2023-10-23 - Notebooks | ||
39 | +### New | ||
40 | +Add notebooks capabilities |
VERSION deleted
@@ -1 +0,0 @@ | @@ -1 +0,0 @@ | ||
1 | -v2.0-alpha |
@@ -0,0 +1 @@ | @@ -0,0 +1 @@ | ||
1 | +v2.0.0-alpha.3 |
web/run.py
@@ -50,7 +50,7 @@ def get_path(relative_path): | @@ -50,7 +50,7 @@ def get_path(relative_path): | ||
50 | # COLLECT GLOBAL INFORMATION FROM SOURCES ##################################### | 50 | # COLLECT GLOBAL INFORMATION FROM SOURCES ##################################### |
51 | 51 | ||
52 | # VERSION | 52 | # VERSION |
53 | -with open(get_path('../VERSION'), 'r') as version_file: | 53 | +with open(get_path('../VERSION.txt'), 'r') as version_file: |
54 | version = version_file.read().strip() | 54 | version = version_file.read().strip() |
55 | 55 | ||
56 | # CONFIG | 56 | # CONFIG |