From ba9d7e256e75fad961c02c80eb248fde3ced29d4 Mon Sep 17 00:00:00 2001 From: Alex Meadows Date: Mon, 24 Jun 2019 12:47:53 -0400 Subject: [PATCH] Trying for 0.4.5 Forgot to change version number --- 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 026297a..65112f4 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.4'); \ No newline at end of file +INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.5'); \ No newline at end of file diff --git a/dbscripts/postgresql_process_tracker_defaults.sql b/dbscripts/postgresql_process_tracker_defaults.sql index d8e0149..9335337 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.4'); \ No newline at end of file +INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.4.5'); \ No newline at end of file diff --git a/process_tracker/__init__.py b/process_tracker/__init__.py index 7b73fdd..6460ef5 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.4" +__version__ = "0.4.5"