Skip to content

Commit 0488e62

Browse files
committed
Bump version to 0.1.4
1 parent 362b272 commit 0488e62

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

fletx/__init__.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
from fletx.core.di import DI
66

77

8-
__version__ = "0.1.4-rc1"
8+
__version__ = "0.1.4"
9+
910

1011
####
1112
## FLETX - DEPENDENCY INJECTION INTERFACE
@@ -15,28 +16,26 @@ class FletX:
1516
This class provides a simple interface to interact with the Dependency Injection (DI) container.
1617
It allows to register, find, delete, and reset instances in the DI container.
1718
"""
18-
19+
1920
@staticmethod
2021
def put(instance, tag=None):
2122
"""Register an instance in the DI container"""
2223
return DI.put(instance, tag)
23-
24+
2425
@staticmethod
2526
def find(cls, tag=None):
2627
"""Retrieve an instance from the DI container"""
2728
return DI.find(cls, tag)
28-
29+
2930
@staticmethod
3031
def delete(cls, tag=None):
3132
"""Delete an instance from the DI container"""
3233
return DI.delete(cls, tag)
33-
34+
3435
@staticmethod
3536
def reset():
3637
"""Reset the DI container, clearing all registered instances."""
3738
return DI.reset()
3839

39-
__all__ = [
40-
'FletX',
41-
'__version__'
42-
]
40+
41+
__all__ = ["FletX", "__version__"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "FletXr"
3-
version = "0.1.4-rc1"
3+
version = "0.1.4"
44
description = "The GetX-inspired Python Framework for Building Reactive, Cross-Platform Apps with Flet"
55
readme = "PYPI.md"
66
license = {file = "LICENSE"}

0 commit comments

Comments
 (0)