-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
valhassan
committed
Apr 17, 2024
1 parent
5855336
commit 70fc9a4
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Geo-inference: Extract features from high-resolution geospatial imagery using foundation models""" | ||
|
||
__author__ = "Victor Alhassan" | ||
__version__ = "2.0.0" | ||
__version__ = "2.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "geo-inference" | ||
version = "2.0.0" | ||
version = "2.0.1" | ||
description = "Extract features from geospatial imagery using deep learning models" | ||
readme = "README.md" | ||
authors = [{ name = "Victor Alhassan", email = "[email protected]" }] | ||
|
@@ -51,7 +51,7 @@ geo_inference = "geo_inference.geo_inference:main" | |
include = ["geo_inference*"] | ||
|
||
[tool.bumpver] | ||
current_version = "2.0.0" | ||
current_version = "2.0.1" | ||
version_pattern = "MAJOR.MINOR.PATCH" | ||
commit_message = "bump version {old_version} -> {new_version}" | ||
commit = true | ||
|