Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit 3a8bb70

Browse files
committed
Bumping version number and fixing typo.
1 parent acf092a commit 3a8bb70

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
sys.path.insert(0, os.path.abspath("../"))
1414

15-
from uoshardware import PROJECT, __author__, __copywright__, __version__ # noqa: E402
15+
from uoshardware import PROJECT, __author__, __copyright__, __version__
1616

1717
project = PROJECT
1818
# Copyright name shadowed by sphinx design.
19-
copyright = __copywright__ # noqa
19+
copyright = __copyright__
2020
author = __author__
2121
# The short MAJOR.MINOR version.
2222
if isinstance(version_match := match(r"^\d.\d", __version__), Match):

uoshardware/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from pathlib import Path
55

66
__author__ = "Steve Richardson (Creating Null)"
7-
__copywright__ = f"2023, {__author__}"
7+
__copyright__ = f"2023, {__author__}"
88
# Semantic Versioning, MAJOR.MINOR.PATCH[-'pre-release-type'.'num']
9-
__version__ = "0.4.0"
9+
__version__ = "0.5.0"
1010
# Dead code false positive as this constant is for use outside primary project.
1111
PROJECT = "UOS Hardware" # dead: disable
1212

@@ -21,7 +21,7 @@ class Persistence(Enum):
2121

2222

2323
class Loading(Enum):
24-
"""Set the management strategy for handling the devices connection."""
24+
"""Set the management strategy for handling the device's connection."""
2525

2626
LAZY = 0
2727
EAGER = 1

0 commit comments

Comments
 (0)