Skip to content

Commit d3d03a0

Browse files
committed
Bump version: 0.3.1 → 0.4.0
1 parent db76c77 commit d3d03a0

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
# v0.3.1
26
- Hotfix, added dependent package (`python-dotenv`) to the installation.
37

setup.cfg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18
[coverage:run]
29
source = simbak/
310

@@ -7,13 +14,6 @@ ignore_errors = True
714
[coverage:html]
815
directory = htmlcov/
916

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-
1717
[bumpversion:file:setup.py]
1818

1919
[bumpversion:file:simbak/__init__.py]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='simbak',
8-
version='0.3.1',
8+
version='0.4.0',
99
author='Mark Bromell',
1010
author_email='markbromell.business@gmail.com',
1111
description='A simple backup solution that\'s light and portable',

simbak/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from dotenv import load_dotenv as _load_dotenv
22
from simbak.logging import set_logger as _set_logger
33

4-
__version__ = '0.3.1'
4+
__version__ = '0.4.0'
55

66
_load_dotenv()
77
_set_logger()

0 commit comments

Comments
 (0)