Commit 2bc010d3e876e9605f80e7d3fe9b7ff75daddeed
1 parent
206f8c7d
Exists in
dev
Update version number & changelog
Showing
3 changed files
with
9 additions
and
2 deletions
Show diff stats
CHANGELOG
1 | +01-06-2023 (AKo): V0.6.25.0 | |
2 | + - Add check visibility button on sequence edit view | |
3 | + - Add ephemeris calculation when submitting a sequence & improve errors return | |
4 | + - Change CONN_MAX_AGE value | |
5 | + - Update tnc config with new agents names (uncomplete). Fix getChannelCapabilities in Obsconfig class. | |
6 | + | |
7 | + | |
1 | 8 | 26-05-2023 (AKo): V0.6.24.0 |
2 | 9 | - Update agents & astronomer obsconfig view to get channels components |
3 | 10 | - Add option on test command to run one test method | ... | ... |
VERSION
src/core/pyros_django/pyros/settings.py
... | ... | @@ -508,7 +508,7 @@ else: |
508 | 508 | |
509 | 509 | python_version = subprocess.run( "python --version | cut -d ' ' -f 2 | cut -d '.' -f 1,2",shell=True,stdout=subprocess.PIPE,universal_newlines=True) |
510 | 510 | python_version = python_version.stdout |
511 | -day = "2022-06-29" | |
511 | +day = "2023-06-01" | |
512 | 512 | django_version_major,django_version_minor = django.VERSION[:2][0],django.VERSION[:2][1] |
513 | 513 | pyros_version = read_version_number_from_file(f"{BASE_DIR}/../../../VERSION") |
514 | 514 | ... | ... |