Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release prep for 1.0.1 #51

Merged
merged 7 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 29 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
46 changes: 46 additions & 0 deletions code.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "[email protected]"
},

"date": {
"metadataLastUpdated": "2025-01-10"
}
}
]
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "spiceql" %}
{% set version = "1.0.0rc1" %}
{% set version = "1.0.1" %}

package:
name: {{ name|lower }}
Expand Down
Loading