diff --git a/build/meta.yaml b/build/meta.yaml index 1ad29d9..c03666c 100644 --- a/build/meta.yaml +++ b/build/meta.yaml @@ -1,5 +1,5 @@ {% set name = "phables" %} -{% set version = "0.1.0b7" %} +{% set version = "0.1.1" %} package: name: "{{ name|lower }}" diff --git a/phables/phables.VERSION b/phables/phables.VERSION index 6c6aa7c..6da28dd 100644 --- a/phables/phables.VERSION +++ b/phables/phables.VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +0.1.1 \ No newline at end of file diff --git a/phables/workflow/scripts/phables.py b/phables/workflow/scripts/phables.py index 220077a..699a55c 100755 --- a/phables/workflow/scripts/phables.py +++ b/phables/workflow/scripts/phables.py @@ -19,7 +19,7 @@ __author__ = "Vijini Mallawaarachchi" __copyright__ = "Copyright 2022, Phables Project" __license__ = "MIT" -__version__ = "0.1.0" +__version__ = "0.1.1" __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 bad78d3..2c50663 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.0") +logger = logging.getLogger("phables 0.1.1") 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 6705b25..9886d60 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.0") +logger = logging.getLogger("phables 0.1.1") class BidirectionalError(Exception):