Skip to content

Commit

Permalink
bump version 0.1.4 -> 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
retospect committed Feb 25, 2023
1 parent 4ccac87 commit bdac2a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "phagetrix"
authors = ["Reto Stamm"]
description = "Optimizer for degenerate codon use in phage library generation"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"
keywords = ["example"]
license = "GPL-3"
classifiers = [ "Programming Language :: Python :: 3", ]
Expand All @@ -20,7 +20,7 @@ python_codon_tables = "*"
phagetrix= "phagetrix.exec:main"

[tool.bumpver]
current_version = "0.1.4"
current_version = "0.1.5"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion src/phagetrix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

__version__ = "0.1.4"
__version__ = "0.1.5"


2 changes: 1 addition & 1 deletion src/phagetrix/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def main():
parser.description = "PhageTrix"
parser.long_description = "Generate degenerate primers for phage display libraries"
parser.epilog = epilog
parser.version = "0.1.4"
parser.version = "0.1.5"
parser.add_argument("input", type=argparse.FileType('r'), metavar='INPUT_FILE', help="Input file")
parser.add_argument("-c", "--company", help="Sequence company", default="IDT") # options=trix.degenerate.keys()

Expand Down

0 comments on commit bdac2a9

Please sign in to comment.