Skip to content

Commit

Permalink
Release 1.0.0 (#205)
Browse files Browse the repository at this point in the history
Also fixed incorrect call to logging.info
  • Loading branch information
rosepearson authored Oct 4, 2023
1 parent 9ac5776 commit 24d6942
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "geofabrics"
version = "0.10.31"
version = "1.0.0"
description = "A package for creating geofabrics for flood modelling."
readme = "README.md"
authors = [{ name = "Rose pearson", email = "rose.pearson@niwa.co.nz" }]
Expand Down
2 changes: 1 addition & 1 deletion src/geofabrics/dem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@ def add_coarse_dems(

# Check if enough without LiDAR to use coarse DEMs
if len(no_data_extents) == 0:
logging.INFO(
logging.info(
f"No land areas greater than {area_threshold} "
"without LiDAR values. Ignoring all remaining coarse DEMs."
)
Expand Down
2 changes: 1 addition & 1 deletion src/geofabrics/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Contains the package version information
"""

__version__ = "0.10.31"
__version__ = "1.0.0"

0 comments on commit 24d6942

Please sign in to comment.