diff --git a/phables/phables.VERSION b/phables/phables.VERSION index 6da28dd..341cf11 100644 --- a/phables/phables.VERSION +++ b/phables/phables.VERSION @@ -1 +1 @@ -0.1.1 \ No newline at end of file +0.2.0 \ No newline at end of file diff --git a/phables/workflow/scripts/phables.py b/phables/workflow/scripts/phables.py index 4ef5748..2f21aa7 100755 --- a/phables/workflow/scripts/phables.py +++ b/phables/workflow/scripts/phables.py @@ -20,7 +20,7 @@ __author__ = "Vijini Mallawaarachchi" __copyright__ = "Copyright 2022, Phables Project" __license__ = "MIT" -__version__ = "0.1.1" +__version__ = "0.2.0" __maintainer__ = "Vijini Mallawaarachchi" __email__ = "viji.mallawaarachchi@gmail.com" __status__ = "Development" diff --git a/phables/workflow/scripts/phables_utils/FD_Inexact.py b/phables/workflow/scripts/phables_utils/FD_Inexact.py index a1910d1..5bef90a 100644 --- a/phables/workflow/scripts/phables_utils/FD_Inexact.py +++ b/phables/workflow/scripts/phables_utils/FD_Inexact.py @@ -6,7 +6,7 @@ import networkx as nx # create logger -logger = logging.getLogger("phables 0.1.1") +logger = logging.getLogger("phables 0.2.0") def read_input(graphfile, number_subpath): diff --git a/phables/workflow/scripts/phables_utils/edge_graph_utils.py b/phables/workflow/scripts/phables_utils/edge_graph_utils.py index b74d784..dbc025a 100644 --- a/phables/workflow/scripts/phables_utils/edge_graph_utils.py +++ b/phables/workflow/scripts/phables_utils/edge_graph_utils.py @@ -7,7 +7,7 @@ from igraph import * # Create logger -logger = logging.getLogger("phables 0.1.1") +logger = logging.getLogger("phables 0.2.0") class BidirectionalError(Exception):