diff --git a/README.md b/README.md index 9a71e41..cc86052 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# hydra-veil-core +# sp-hydra-veil-core -The `hydra-veil-core` library exposes core logic to higher-level components. +The `sp-hydra-veil-core` library exposes core logic to higher-level components. diff --git a/core/controllers/ClientController.py b/core/controllers/ClientController.py index 917e499..d9ebc99 100644 --- a/core/controllers/ClientController.py +++ b/core/controllers/ClientController.py @@ -21,7 +21,7 @@ class ClientController: @staticmethod def get_version(): - version_number = os.environ.get('HV_CLIENT_VERSION') + version_number = os.environ.get('HV_VERSION_NUMBER') if version_number is None: raise UnknownClientVersionError('The client version could not be determined.') diff --git a/pyproject.toml b/pyproject.toml index 2e375d7..339895e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] -name = "hydra-veil-core" -version = "0.0.1" +name = "sp-hydra-veil-core" +version = "1.0.0" authors = [ { name = "Simplified Privacy" }, ] @@ -22,8 +22,8 @@ dependencies = [ ] [project.urls] -Homepage = "https://git.simplifiedprivacy.is/codeking/hydra-veil-core" -Issues = "https://git.simplifiedprivacy.is/codeking/hydra-veil-core/issues" +Homepage = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core" +Issues = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core/issues" [build-system] requires = ["hatchling"]