Skip to content

Commit 7569874

Browse files
committed
dev3
1 parent 49a3b27 commit 7569874

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

fmd_api/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from .client import FmdClient
33
from .device import Device
44
from .exceptions import FmdApiException, AuthenticationError, DeviceNotFoundError, OperationError
5+
from ._version import __version__
56

67
__all__ = [
78
"FmdClient",
@@ -10,4 +11,5 @@
1011
"AuthenticationError",
1112
"DeviceNotFoundError",
1213
"OperationError",
14+
"__version__",
1315
]

fmd_api/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0-dev2"
1+
__version__ = "2.0.0-dev3"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fmd_api"
3-
version = "2.0.0-dev2"
3+
version = "2.0.0.dev3"
44
authors = [{name = "devinslick"}]
55
description = "A Python client for the FMD (Find My Device) server API"
66
readme = "README.md"

0 commit comments

Comments
 (0)