summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-05-14 22:49:37 +0200
committerjvoisin2018-05-14 22:49:37 +0200
commit289f2b96417a0ad768be19bdc1113006bdd5f5ea (patch)
tree25d26cb0cf09ef1436ce8d5674eb79a0141c3077
parent2b713deb94cbad92262db37e47c5c98df2031204 (diff)
Add a changelog file
-rw-r--r--CHANGELOG.md3
-rwxr-xr-xmain.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..827866a
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,3 @@
1# 0.1.0 - 2018-05-14
2
3- Initial release
diff --git a/main.py b/main.py
index 7b32956..2a3b4b5 100755
--- a/main.py
+++ b/main.py
@@ -10,7 +10,7 @@ import multiprocessing
10 10
11from src import parser_factory 11from src import parser_factory
12 12
13__version__ = '0.1' 13__version__ = '0.1.0'
14 14
15def __check_file(filename:str, mode:int = os.R_OK) -> bool: 15def __check_file(filename:str, mode:int = os.R_OK) -> bool:
16 if not os.path.isfile(filename): 16 if not os.path.isfile(filename):