Skip to content

Commit a4bda52

Browse files
committed
Bump to beta version 0.6.0
Bumped version to 0.6.0 for new release.
1 parent dfb5010 commit a4bda52

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dbscripts/mysql_process_tracker_defaults.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ INSERT INTO process_tracker.error_type_lkup (error_type_id, error_type_name) VAL
2020
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Extract');
2121
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Load');
2222

23-
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.5.0');
23+
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.6.0');

dbscripts/postgresql_process_tracker_defaults.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ INSERT INTO process_tracker.error_type_lkup (error_type_id, error_type_name) VAL
2121
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Extract');
2222
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Load');
2323

24-
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.5.0');
24+
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.6.0');

process_tracker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from process_tracker.extract_tracker import ExtractTracker
22
from process_tracker.process_tracker import ProcessTracker
33

4-
__version__ = "0.5.0"
4+
__version__ = "0.6.0"

process_tracker/utilities/data_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
]
3838
preload_process_status_types = ["running", "completed", "failed", "on hold"]
3939
preload_process_types = ["extract", "load"]
40-
preload_system_keys = [{"version", "0.5.0"}]
40+
preload_system_keys = [{"version", "0.6.0"}]
4141

4242
supported_data_stores = ["postgresql", "mysql", "oracle", "mssql", "snowflake"]
4343

0 commit comments

Comments
 (0)