diff --git a/README.md b/README.md index edf06447c6982e5ba66a2741c9eaa5e20e19d998..32d4aee1af112e13503da182e8f9955d51421257 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # hydrolink - + The term "hydrolink" refers to the process of linking spatial data to a stream network. This is similar to the analogy of providing an address on a road network and provides locational context and position within a stream network. Hydrolinking data to a common stream network allows information to be centralized, supporting landscape scale analyses and modeling efforts. Versions of the National Hydrography Dataset (NHD) are often used as a spatial framework for modeling and describing aquatic biological and hydrologic systems at larger geographic scales. @@ -21,7 +21,7 @@ Daniel Wieferich - dwieferich@usgs.gov ## USGS Software Release Information -Wieferich, D.J., Serna, B. 2023. hydrolink Version-1.0.0. U.S. Geological Survey software release. https://doi.org/10.5066/P9DGZVXW. +Wieferich, D.J., Serna, B., Labriola, L. 2023. hydrolink Version-1.0.1. U.S. Geological Survey software release. https://doi.org/10.5066/P9DGZVXW. IP-`151836` diff --git a/code.json b/code.json index 28602f5a2d52fe807c8c37a1d191446bc9187583..17446c4a7ef42567a0b331b693c6c24c34f28832 100644 --- a/code.json +++ b/code.json @@ -51,7 +51,7 @@ "name": "hydrolink", "organization": "U.S. Geological Survey", "description": "Python package with methods and command line tool to address information to National Hydrography Datasets.", - "version": "1.0.0", + "version": "1.0.1", "status": "Production", "permissions": { @@ -59,14 +59,14 @@ "licenses": [ { "name": "unlicense", - "URL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink/-/raw/1.0.0/LICENSE.md" + "URL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink/-/raw/1.0.1/LICENSE.md" } ] }, "homepageURL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink", - "downloadURL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink/-/archive/1.0.0/hydrolink-1.0.0.zip", - "disclaimerURL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink/-/raw/1.0.0/DISCLAIMER.md", + "downloadURL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink/-/archive/1.0.1/hydrolink-1.0.1.zip", + "disclaimerURL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink/-/raw/1.0.1/DISCLAIMER.md", "repositoryURL": "https://code.usgs.gov/sas/bioscience/hlt/hydrolink.git", "vcs": "git", diff --git a/hydrolink/__init__.py b/hydrolink/__init__.py index fc193150721be6b30503fecdf9431ae0958a80fd..573429af4c7aa711c5de862b7dc9426ed1641ecb 100644 --- a/hydrolink/__init__.py +++ b/hydrolink/__init__.py @@ -5,4 +5,4 @@ __author__ = """Daniel J Wieferich""" __email__ = 'dwieferich@usgs.gov' # provide version, PEP - three components ("major.minor.micro") -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/setup.cfg b/setup.cfg index 21ecdbbb0c411f3b6effa68ca3e548ddd4e979af..4beea00bcc439426952dc4113dba987e0781059d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index 3331999645bab0758ba6505b6ea24e772af8e710..37999719b93a4b7fa61c9a99735090b07522206a 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,6 @@ setup( test_suite='tests', tests_require=test_requirements, url='https://code.usgs.gov/sas/bioscience/hlt/hydrolink', - version='1.0.0', + version='1.0.1', zip_safe=False, )