From f2a9c00d732791fced1a4096149e0d0ee596dd39 Mon Sep 17 00:00:00 2001 From: Kelvin Rodriguez Date: Wed, 13 Nov 2024 09:21:06 -0700 Subject: [PATCH] 1.6.0 release prep (#212) * version bump * ticked version * version bump --- CHANGELOG.md | 3 +++ code.json | 46 +++++++++++++++++++++++++++++++++++++++++++++- recipe/meta.yaml | 6 +++--- setup.py | 2 +- 4 files changed, 52 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc32b2f3a..330831886 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,9 @@ release. --> ## [Unreleased] + +# [1.6.0]() + ### Added - Hard coded support for `csminit`ed cubes that have serial numbers that differ from `spiceinit`ed cubes. - Added support for scale and offset for GeoDataset objects. diff --git a/code.json b/code.json index ed9e796b4..15816df76 100644 --- a/code.json +++ b/code.json @@ -86,7 +86,51 @@ "date": { "metadataLastUpdated": "2023-09-19" } - }, { + }, + { + "name": "plio", + "organization": "U.S. Geological Survey", + "description": "A planetary surface data input/output library written in Python.", + "version": "v1.6.0", + "status": "Development", + + "permissions": { + "usageType": "openSource", + "licenses": [ + { + "name": "Public Domain, CC0-1.0", + "URL": "https://code.usgs.gov/astrogeology/plio/-/raw/v1.6.0/LICENSE.md" + } + ] + }, + "homepageURL": "https://plio.readthedocs.io/en/latest/?badge=latest", + "downloadURL": "https://code.usgs.gov/astrogeology/plio/-/archive/v1.6.0/plio-v1.6.0.zip", + "disclaimerURL": "https://code.usgs.gov/astrogeology/plio/-/raw/v1.6.0/DISCLAIMER.md", + "repositoryURL": "https://code.usgs.gov/astrogeology/plio.git", + "vcs": "git", + "laborHours": 1000, + + "tags": [ + "Planetary", + "Remote Sensing", + "Photogrammetry", + "Data Processing" + ], + + "languages": [ + "python" + ], + + "contact": { + "name": "Kelvin Rodriguez", + "email": "krodriguez@usgs.gov" + }, + + "date": { + "metadataLastUpdated": "2023-02-23" + } + }, + { "name": "plio", "organization": "U.S. Geological Survey", "description": "A planetary surface data input/output library written in Python.", diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 094118129..440e7bb8b 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -20,7 +20,7 @@ requirements: - python - setuptools - numpy - - pvl >= 1.3.0 + - pvl>=1.3.0 - protobuf - icu - h5py @@ -35,7 +35,7 @@ requirements: - python - setuptools - numpy - - pvl >= 1.3.0 + - pvl>=1.3.0 - protobuf - icu - h5py @@ -56,4 +56,4 @@ test: about: home: http://github.com/USGS-Astrogeology/plio - license: Public Domain \ No newline at end of file + license: Public Domain diff --git a/setup.py b/setup.py index a423c81a1..0c3a4d195 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def setup_package(): setup( name = "plio", - version = '1.5.5', + version = '1.6.0', author = "USGS Astrogeology", author_email = "jlaura@usgs.gov", description = ("I/O API to support planetary data formats."),