Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Oct 4, 2023
1 parent 9468e24 commit 400a41e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

[How to upgrade to the latest version!](https://lucit-licensing-python.docs.lucit.tech/README.html#installation-and-upgrade)

## 1.0.2.a.dev (development stage/unreleased/unstable)
## 1.0.3.dev (development stage/unreleased/unstable)

## 1.0.2.a
## 1.0.3
- RELEASE!!! :)
5 changes: 2 additions & 3 deletions lucit_licensing_python/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, api_secret: str = None, license_token: str = None,
self.id = str(uuid.uuid4())
self.license_token = license_token
self.mac = str(hex(uuid.getnode()))
self.module_version: str = "1.0.2a"
self.module_version: str = "1.0.3"
self.needed_license_type = needed_license_type
self.os = platform.system()
self.parent_shutdown_function = parent_shutdown_function
Expand All @@ -55,8 +55,7 @@ def __init__(self, api_secret: str = None, license_token: str = None,
self.sigterm = False
self.time_delta = 0.0
self.url: str = "https://private.api.lucit.services/licensing/v1/"
self.version: str = "1.0.0"
logger.info(f"Starting instance of `lucit-licensing-python_{self.version}"
logger.info(f"Starting instance of `lucit-licensing-python_{self.module_version}"
f"{'_compiled' if cython.compiled else '_source'}' ...")
if start is True:
self.start()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
'lucit_licensing_python/manager.py'],
annotate=False),
name='lucit-licensing-python',
version="1.0.2a",
version="1.0.3",
author="LUCIT Systems and Development",
author_email='info@lucit.tech',
url="https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python",
Expand Down

0 comments on commit 400a41e

Please sign in to comment.