Skip to content

Commit 1f2af44

Browse files
committed
bump version 0.0.4 -> 0.1.0
Former-commit-id: 4f98c80
1 parent 73a71f3 commit 1f2af44

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deep_image_matching"
7-
version = "0.0.4"
7+
version = "0.1.0"
88
description = "Multiview matching with deep-learning and hand-crafted local features for COLMAP and other SfM software."
99
readme = "README.md"
1010
authors = [
@@ -58,7 +58,7 @@ addopts = [
5858
profile = "black"
5959

6060
[tool.bumpver]
61-
current_version = "0.0.4"
61+
current_version = "0.1.0"
6262
version_pattern = "MAJOR.MINOR.PATCH"
6363
commit_message = "bump version {old_version} -> {new_version}"
6464
commit = true

src/deep_image_matching/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .utils.logger import change_logger_level, get_logger, setup_logger # noqa: F401
55
from .utils.timer import Timer, timeit # noqa: F401
66

7-
__version__ = "0.0.4"
7+
__version__ = "0.1.0"
88

99
logger = setup_logger(name="deep-image-matching", log_level="info")
1010
timer = Timer(logger=logger)

0 commit comments

Comments
 (0)