File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change
1
+ # v0.4.0
2
+ - The log file path can now be specified.
3
+ - File logging is no longer done by default, it is optional.
4
+
1
5
# v0.3.1
2
6
- Hotfix, added dependent package (` python-dotenv ` ) to the installation.
3
7
Original file line number Diff line number Diff line change
1
+ [bumpversion]
2
+ current_version = 0.4.0
3
+ commit = True
4
+ tag = True
5
+ parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
6
+ serialize = {major}.{minor}.{patch}
7
+
1
8
[coverage:run]
2
9
source = simbak/
3
10
@@ -7,13 +14,6 @@ ignore_errors = True
7
14
[coverage:html]
8
15
directory = htmlcov/
9
16
10
- [bumpversion]
11
- current_version = 0.3.1
12
- commit = True
13
- tag = True
14
- parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
15
- serialize = {major}.{minor}.{patch}
16
-
17
17
[bumpversion:file:setup.py]
18
18
19
19
[bumpversion:file:simbak/__init__.py]
Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = 'simbak' ,
8
- version = '0.3.1 ' ,
8
+ version = '0.4.0 ' ,
9
9
author = 'Mark Bromell' ,
10
10
author_email = 'markbromell.business@gmail.com' ,
11
11
description = 'A simple backup solution that\' s light and portable' ,
Original file line number Diff line number Diff line change 1
1
from dotenv import load_dotenv as _load_dotenv
2
2
from simbak .logging import set_logger as _set_logger
3
3
4
- __version__ = '0.3.1 '
4
+ __version__ = '0.4.0 '
5
5
6
6
_load_dotenv ()
7
7
_set_logger ()
You can’t perform that action at this time.
0 commit comments