From f5a65128d00f120217992cf53284e9dccd86cd9b Mon Sep 17 00:00:00 2001 From: Christine Kim <125395064+chkim-usgs@users.noreply.github.com> Date: Fri, 10 Jan 2025 15:13:32 -0500 Subject: [PATCH] Release prep for 1.0.1 (#51) * fixed bug where cks were using interval scope * changelog update * Update changelog * Update docs --------- Co-authored-by: kelvinrr <krodriguez@usgs.gov> --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++---- code.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ recipe/meta.yaml | 2 +- 3 files changed, 76 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7fd2f2..705d2c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,15 @@ release. ## [Unreleased] -## 1.0 +## 1.0.1 + +### Changed +- Changes to support integration with ISIS [#48](https://github.com/DOI-USGS/SpiceQL/pull/48) + +### Fixed +- Fixed getLatestKernels bug [#49](https://github.com/DOI-USGS/SpiceQL/pull/49) + +## 1.0.0 ### Added @@ -46,9 +54,26 @@ release. - Adds support for LROC MiniRF [#10](https://github.com/DOI-USGS/SpiceQL/issues/10) - Adds support for MSL [#15](https://github.com/DOI-USGS/SpiceQL/issues/15) - Adds support for MER [#14](https://github.com/DOI-USGS/SpiceQL/issues/14) +- Add github workflows [#20](https://github.com/DOI-USGS/SpiceQL/pull/20) +- Added PR template with licensing [#5](https://github.com/DOI-USGS/SpiceQL/pull/5) + +### Changed + +- Mkdocs update [#26](https://github.com/DOI-USGS/SpiceQL/pull/26) +- FastAPI app [#27](https://github.com/DOI-USGS/SpiceQL/pull/27) +- Clean up any mention of Sphinx [#32](https://github.com/DOI-USGS/SpiceQL/pull/32) +- Supporting ALE's ISD to Kernel functionality [#33](https://github.com/DOI-USGS/SpiceQL/pull/33) +- New inventory class [#31](https://github.com/DOI-USGS/SpiceQL/pull/31) +- Ale changes [#36](https://github.com/DOI-USGS/SpiceQL/pull/36) +- Accept string for ets param [#34](https://github.com/DOI-USGS/SpiceQL/pull/34) +- Dockerize FastAPI [#35](https://github.com/DOI-USGS/SpiceQL/pull/35) +- Validates quality param [#40](https://github.com/DOI-USGS/SpiceQL/pull/40) +- Planetary body search [#42](https://github.com/DOI-USGS/SpiceQL/pull/42) ### Fixed +- Bug fixes + tests [#38](https://github.com/DOI-USGS/SpiceQL/pull/38) +- Bugfixes [#39](https://github.com/DOI-USGS/SpiceQL/pull/39) +- Fixing bugs in the time search [#41](https://github.com/DOI-USGS/SpiceQL/pull/41) +- Fixed bug where cks were using interval scope [#43](https://github.com/DOI-USGS/SpiceQL/pull/43) +- SCLK Bug fixes [#44](https://github.com/DOI-USGS/SpiceQL/pull/44) -### Changed -- SpiceQL source code -- Required administrative files diff --git a/code.json b/code.json index 43ff064..0d906ca 100644 --- a/code.json +++ b/code.json @@ -90,5 +90,51 @@ "date": { "metadataLastUpdated": "2023-09-20" } + }, + { + "name": "SpiceQL", + "organization": "U.S. Geological Survey", + "description": "GitLab repository for library that interacts with NAIF's SPICE kernels", + "version": "1.0.1", + "status": "Development", + + "permissions": { + "usageType": "openSource", + "licenses": [ + { + "name": "Public Domain, CC0-1.0", + "URL": "https://code.usgs.gov/astrogeology/spiceql/-/raw/main/LICENSE.md" + } + ] + }, + + "homepageURL": "https://code.usgs.gov/astrogeology/spiceql/", + "downloadURL": "https://code.usgs.gov/astrogeology/spiceql/-/archive/1.0.1/spiceql-1.0.1.zip", + "disclaimerURL": "https://code.usgs.gov/astrogeology/spiceql/-/raw/1.0.1/DISCLAIMER.md", + "repositoryURL": "https://code.usgs.gov/astrogeology/spiceql.git", + "vcs": "git", + + "laborHours": 520, + + "tags": [ + "Planetary", + "Remote Sensing", + "Data Processing", + "Ephemerides", + "Kernels" + ], + + "languages": [ + "C++", "Python" + ], + + "contact": { + "name": "Christine Kim", + "email": "chkim@usgs.gov" + }, + + "date": { + "metadataLastUpdated": "2025-01-10" + } } ] \ No newline at end of file diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 9f2c82e..8aac57f 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "spiceql" %} -{% set version = "1.0.0rc1" %} +{% set version = "1.0.1" %} package: name: {{ name|lower }} -- GitLab