Skip to content

Commit

Permalink
REL: Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Apr 24, 2024
1 parent 4296223 commit 4ed5fc4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/metacoag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.1.5"
__version__ = "1.2.0"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "vijini.mallawaarachchi@anu.edu.au"
__status__ = "Stable Release"
4 changes: 2 additions & 2 deletions src/metacoag/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.1.5"
__version__ = "1.2.0"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "vijini.mallawaarachchi@anu.edu.au"
__status__ = "Stable Release"
Expand Down Expand Up @@ -237,7 +237,7 @@ def main(
# Setup logger
# ------------------------------------------------------------------------

logger = logging.getLogger("MetaCoaAG 1.1.5")
logger = logging.getLogger("MetaCoaAG 1.2.0")
logger.setLevel(logging.DEBUG)
logging.captureWarnings(True)
formatter = logging.Formatter("%(asctime)s - %(levelname)s - %(message)s")
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Vijini Mallawaarachchi and Yu Lin"
__copyright__ = "Copyright 2020, MetaCoAG Project"
__license__ = "GPL-3.0"
__version__ = "1.1.5"
__version__ = "1.2.0"
__maintainer__ = "Vijini Mallawaarachchi"
__email__ = "vijini.mallawaarachchi@anu.edu.au"
__status__ = "Stable Release"
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/feature_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from Bio import SeqIO

# Create logger
logger = logging.getLogger("MetaCoaAG 1.1.5")
logger = logging.getLogger("MetaCoaAG 1.2.0")

# Set complements of each nucleotide
complements = {"A": "T", "C": "G", "G": "C", "T": "A"}
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/label_prop_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
MAX_WEIGHT = sys.float_info.max

# create logger
logger = logging.getLogger("MetaCoaAG 1.1.5")
logger = logging.getLogger("MetaCoaAG 1.2.0")


class DataWrap:
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/marker_gene_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pathlib

# create logger
logger = logging.getLogger("MetaCoaAG 1.1.5")
logger = logging.getLogger("MetaCoaAG 1.2.0")


# Modified from SolidBin
Expand Down
2 changes: 1 addition & 1 deletion src/metacoag/metacoag_utils/matching_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
MAX_WEIGHT = sys.float_info.max

# create logger
logger = logging.getLogger("MetaCoaAG 1.1.5")
logger = logging.getLogger("MetaCoaAG 1.2.0")


def normpdf(x, mean, sd):
Expand Down

0 comments on commit 4ed5fc4

Please sign in to comment.