Skip to content

Commit

Permalink
v0.8.0 Bumping Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Meadows committed Nov 26, 2019
1 parent 3bbc425 commit 2d26b01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dbscripts/mysql_process_tracker_defaults.sql
Expand Up @@ -20,7 +20,7 @@ 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.7.0');
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.8.0');

INSERT INTO process_tracker.extract_compression_type_lkup (extract_compression_type_id, extract_compression_type) VALUES (1, 'zip');

Expand Down
2 changes: 1 addition & 1 deletion dbscripts/postgresql_process_tracker_defaults.sql
Expand Up @@ -21,7 +21,7 @@ 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.7.0');
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.8.0');

INSERT INTO process_tracker.extract_compression_type_lkup (extract_compression_type_id, extract_compression_type) VALUES (1, 'zip');

Expand Down
2 changes: 1 addition & 1 deletion process_tracker/__init__.py
@@ -1,4 +1,4 @@
from process_tracker.extract_tracker import ExtractTracker
from process_tracker.process_tracker import ProcessTracker

__version__ = "0.7.0"
__version__ = "0.8.0"

0 comments on commit 2d26b01

Please sign in to comment.