From db25a4ac9e46dae50d5c6316e80909d4d9261dae Mon Sep 17 00:00:00 2001 From: Alex Meadows Date: Mon, 24 Jun 2019 11:03:02 -0400 Subject: [PATCH] Trying for 0.4.4 Issue with config files and lambda remained. Trying another method to work with it. --- dbscripts/mysql_process_tracker_defaults.sql | 2 +- dbscripts/postgresql_process_tracker_defaults.sql | 2 +- process_tracker/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dbscripts/mysql_process_tracker_defaults.sql b/dbscripts/mysql_process_tracker_defaults.sql index 9ed1b99..026297a 100644 --- a/dbscripts/mysql_process_tracker_defaults.sql +++ b/dbscripts/mysql_process_tracker_defaults.sql @@ -19,4 +19,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.4.3'); \ No newline at end of file +INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.4'); \ No newline at end of file diff --git a/dbscripts/postgresql_process_tracker_defaults.sql b/dbscripts/postgresql_process_tracker_defaults.sql index 4b5a0c1..d8e0149 100644 --- a/dbscripts/postgresql_process_tracker_defaults.sql +++ b/dbscripts/postgresql_process_tracker_defaults.sql @@ -19,4 +19,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.4.3'); \ No newline at end of file +INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.4'); \ No newline at end of file diff --git a/process_tracker/__init__.py b/process_tracker/__init__.py index ef9d12a..7b73fdd 100755 --- a/process_tracker/__init__.py +++ b/process_tracker/__init__.py @@ -1,4 +1,4 @@ from process_tracker.extract_tracker import ExtractTracker from process_tracker.process_tracker import ProcessTracker -__version__ = "0.4.3" +__version__ = "0.4.4"