Adopt additional revised naming conventions

This commit is contained in:
codeking 2025-02-23 09:06:42 +01:00
parent ef140fe11d
commit 99ef6e8afc
3 changed files with 7 additions and 7 deletions

View file

@ -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.

View file

@ -21,7 +21,7 @@ class ClientController:
@staticmethod @staticmethod
def get_version(): def get_version():
version_number = os.environ.get('HV_CLIENT_VERSION') version_number = os.environ.get('HV_VERSION_NUMBER')
if version_number is None: if version_number is None:
raise UnknownClientVersionError('The client version could not be determined.') raise UnknownClientVersionError('The client version could not be determined.')

View file

@ -1,6 +1,6 @@
[project] [project]
name = "hydra-veil-core" name = "sp-hydra-veil-core"
version = "0.0.1" version = "1.0.0"
authors = [ authors = [
{ name = "Simplified Privacy" }, { name = "Simplified Privacy" },
] ]
@ -22,8 +22,8 @@ dependencies = [
] ]
[project.urls] [project.urls]
Homepage = "https://git.simplifiedprivacy.is/codeking/hydra-veil-core" Homepage = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core"
Issues = "https://git.simplifiedprivacy.is/codeking/hydra-veil-core/issues" Issues = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core/issues"
[build-system] [build-system]
requires = ["hatchling"] requires = ["hatchling"]