Skip to content

Commit 2fbc2cd

Browse files
author
Alex Meadows
committed
0.9.0 Release
✨ Tagging for new release.
1 parent 6c7c8bb commit 2fbc2cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dbscripts/mysql_process_tracker_defaults.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ 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.8.1');
23+
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.9.0');
2424

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

dbscripts/postgresql_process_tracker_defaults.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ 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.8.1');
24+
INSERT INTO process_tracker.system_lkup (system_id, system_key, system_value) VALUES (default, 'version', '0.9.0');
2525

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

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.8.1"
4+
__version__ = "0.9.0"

0 commit comments

Comments
 (0)