Skip to content

Commit 4e4e19c

Browse files
author
Valentin
committed
Version 1.3.0
1 parent d919083 commit 4e4e19c

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.0
2+
3+
- Add webserver with songs graph.
4+
15
## 1.2.0
26

37
- Allow passing underlying client options in config

setup.py

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

44
setup(
55
name='statify',
6-
version='1.2.0',
6+
version='1.3.0',
77
packages=[
88
'statify',
99
'statify.webserver',

statify/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from pathlib import Path
33

4-
VERSION = '1.2.0'
4+
VERSION = '1.3.0'
55

66
STATIFY_PATH = Path(os.environ.get('STATIFY_DATA',
77
Path.home() / '.data' / 'statify'))

tests/database_client/test_compare_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_init_database_without_any_additional_sql(
3737
with open(str(database_client.DATABASE_VERSION_PATH), 'w') as version_file:
3838
version_file.write('1.1.0')
3939

40-
mocker.patch.object(config, 'VERSION', '1.2.0')
40+
mocker.patch.object(config, 'VERSION', '1.3.0')
4141

4242
database_client.StatifyDatabase(':memory')
4343

0 commit comments

Comments
 (0)