Skip to content

Commit 2be06d3

Browse files
authored
Merge pull request #15 from Boyle-Lab/dev
Bump version: 1.1.2 → 1.1.3
2 parents 264aa51 + fd6d301 commit 2be06d3

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.2
2+
current_version = 1.1.3
33
commit = True
44
tag = True
55

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.2
1+
1.1.3

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[bumpversion]
2-
current_version = 1.1.2
2+
current_version = 1.1.3
33
commit=True
44
tag=True
55

66
[metadata]
77
name = LRphase
8-
version = 1.1.2
8+
version = 1.1.3
99

1010
[options]
1111
packages = LRphase

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131

3232
metadata = dict(
3333
name = 'LRphase',
34-
version = '1.1.2',
34+
version = '1.1.3',
3535
license = 'MIT',
3636
description = 'Phasing individual long reads using known haplotype information.',
3737
description_content_type = 'text/plain',

src/LRphase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.1.2'
1+
__version__ = '1.1.3'
22
try:
33
from ._LRphase import longest # noqa
44
except ImportError:

src/LRphase/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import time
1414
from LRphase.PhaseSet import powlaw_modified, _estimate_prior_probabilities
1515

16-
__version__ = "1.1.2"
16+
__version__ = "1.1.3"
1717

1818
# TO-DO:
1919
## The main phasing function should be a wrapper that loops over samples

utils/fitErrorModel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
log-likelihood ratio distribution, just somewhat less granular.
1717
"""
1818

19-
__version__ = "1.1.2"
19+
__version__ = "1.1.3"
2020

2121

2222
def parse_histogram_file(log_file):

0 commit comments

Comments
 (0)