Skip to content

Commit

Permalink
💎 Bumpversion from 0.1.0 to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastian Eichenberger authored and Bastian Eichenberger committed Feb 25, 2021
1 parent 023ffe0 commit 038f809
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = False
tag = True

Expand Down
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: "deepblink"
version: 0.1.0
version: 0.1.1
source:
path: ..

Expand Down
2 changes: 1 addition & 1 deletion deepblink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- util: Basic utility functions not fitting into a category.
"""

__version__ = "0.1.0"
__version__ = "0.1.1"

from . import augment
from . import cli
Expand Down
2 changes: 1 addition & 1 deletion deepblink/cli/_parseutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def _add_utils(parser: argparse.ArgumentParser):
"-V",
"--version",
action="version",
version="%(prog)s 0.1.0",
version="%(prog)s 0.1.1",
help="Show %(prog)s's version number.",
)
group.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
year = "2020"
author = "Bastian Eichenberger"
copyright = f"{year}, {author}"
version = release = "0.1.0"
version = release = "0.1.1"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
setup(
# Description
name="deepblink",
version="0.1.0",
version="0.1.1",
license="MIT",
description="Threshold independent detection and localization of diffraction-limited spots.",
long_description_content_type="text/plain",
Expand Down

0 comments on commit 038f809

Please sign in to comment.