diff --git a/pyproject.toml b/pyproject.toml index 88d887042..f06506085 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ test = [ [tool.briefcase] project_name = "Plotlyst" bundle = "com.plotlyst" -version = "2024.11rc1.dev1" +version = "0.1.0.dev1" [tool.briefcase.app.plotlyst] formal_name = "Plotlyst" diff --git a/setup.py b/setup.py index 22a330167..23e1bd6f2 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ import json import os import re -import time from setuptools import setup @@ -25,11 +24,6 @@ def get_base_version(): raise RuntimeError("Unable to find __version__ string in version.py") -def get_full_version(base_version): - timestamp = time.strftime("%Y%m%d.%H%M%S") - return f"{base_version}+{timestamp}" - - def check_versions(base_version): pyproject_version = get_briefcase_version() if pyproject_version != base_version: diff --git a/src/main/python/plotlyst/version.py b/src/main/python/plotlyst/version.py index 24ef6440f..5e4f2c900 100644 --- a/src/main/python/plotlyst/version.py +++ b/src/main/python/plotlyst/version.py @@ -18,4 +18,4 @@ along with this program. If not, see . """ -plotlyst_version = '2024.11rc1.dev1' +plotlyst_version = '0.1.0.dev1'