Skip to content

Commit a98c9e5

Browse files
authored
Merge pull request #55 from daichengxin/main
bump version
2 parents 4d0093d + 0bd7ce4 commit a98c9e5

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

onsite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""OnSite: Mass spectrometry post-translational modification localization tool."""
22

3-
__version__ = "0.0.3"
3+
__version__ = "0.0.5"
44
__author__ = "BigBio Stack"
55
__license__ = "MIT"
66

onsite/onsitec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from onsite.id_io import load_identifications, save_identifications
2222

2323
@click.group()
24-
@click.version_option(version="0.0.4")
24+
@click.version_option(version="0.0.5")
2525
def cli():
2626
"""
2727
OnSite: Mass spectrometry post-translational modification localization tool

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyonsite"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "onsite: mass spectrometry post-translational localization tool"
55
authors = [
66
{name = "BigBio Stack"}

tests/test_imports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_onsite_import():
1818
"""Test that the main onsite package can be imported."""
1919

2020
assert hasattr(onsite, "__version__")
21-
assert onsite.__version__ == "0.0.3"
21+
assert onsite.__version__ == "0.0.5"
2222

2323

2424
def test_ascore_import():

0 commit comments

Comments
 (0)