Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAwiteb committed Nov 24, 2021
1 parent 01f8fd2 commit 3aca8ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fatoora/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__all__ = "version", "version_info"

version = "1.0.1"
version = "1.2.0"


def version_info() -> str:
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from setuptools import setup, find_packages
import re

KEYWORD = ["fatoora", "Fatoora", "ZATCA", "QR-Code"]

version = "1.1.0"
with open("fatoora/version.py", "r", encoding="utf-8") as f:
version = re.search(
r'^version\s*=\s*"(.*)".*$', f.read(), flags=re.MULTILINE
).group(1)

with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
Expand Down

0 comments on commit 3aca8ca

Please sign in to comment.