Skip to content

Commit 161a114

Browse files
committed
bump version 1.2.4 -> 1.3.0
1 parent 8cdcc69 commit 161a114

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 = "1.0.0"
7+
version = "1.3.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 = [
@@ -62,7 +62,7 @@ addopts = [
6262
profile = "black"
6363

6464
[tool.bumpver]
65-
current_version = "1.0.0"
65+
current_version = "1.3.0"
6666
version_pattern = "MAJOR.MINOR.PATCH"
6767
commit_message = "bump version {old_version} -> {new_version}"
6868
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__ = "1.0.0"
7+
__version__ = "1.3.0"
88

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

0 commit comments

Comments
 (0)