Skip to content

Commit

Permalink
Bump to beta version 0.6.0
Browse files Browse the repository at this point in the history
Bumped version to 0.6.0 for new release.
  • Loading branch information
OpenDataAlex committed Jul 19, 2019
1 parent dfb5010 commit a4bda52
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dbscripts/mysql_process_tracker_defaults.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ INSERT INTO process_tracker.error_type_lkup (error_type_id, error_type_name) VAL
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Extract');
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Load');

INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.5.0');
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.6.0');
2 changes: 1 addition & 1 deletion dbscripts/postgresql_process_tracker_defaults.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ INSERT INTO process_tracker.error_type_lkup (error_type_id, error_type_name) VAL
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Extract');
INSERT INTO process_tracker.process_type_lkup (process_type_id, process_type_name) VALUES (default, 'Load');

INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.5.0');
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.6.0');
2 changes: 1 addition & 1 deletion process_tracker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from process_tracker.extract_tracker import ExtractTracker
from process_tracker.process_tracker import ProcessTracker

__version__ = "0.5.0"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion process_tracker/utilities/data_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
]
preload_process_status_types = ["running", "completed", "failed", "on hold"]
preload_process_types = ["extract", "load"]
preload_system_keys = [{"version", "0.5.0"}]
preload_system_keys = [{"version", "0.6.0"}]

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

Expand Down

0 comments on commit a4bda52

Please sign in to comment.