Skip to content

Commit

Permalink
اطلاق النسخة 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vzool committed Jun 23, 2024
1 parent 50862fb commit 6fd2c83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "zakat"
version = "0.2.01"
version = "0.2.2"
authors = [
{ name="Abdelaziz Elrashed Elshaikh Mohamed", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='zakat',
packages=find_packages(include=['zakat']),
version='0.2.01',
version='0.2.2',
description='A Python Library for Islamic Financial Management.',
author='Abdelaziz Elrashed Elshaikh Mohamed',
install_requires=[],
Expand Down
2 changes: 1 addition & 1 deletion zakat/zakat_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class ZakatTracker:
ZakatCut = lambda x: 0.025*x # Zakat Cut in one Lunar Year
TimeCycle = lambda : int(60*60*24*354.367056*1e9) # Lunar Year in nanoseconds
Nisab = lambda x: 585*x # Silver Price in Local currency value
Version = lambda : '0.2.01'
Version = lambda : '0.2.2'

def __init__(self, db_path: str = "zakat.pickle", history_mode: bool = True):
"""
Expand Down

0 comments on commit 6fd2c83

Please sign in to comment.