Skip to content

Commit f5a6512

Browse files
chkim-usgsKelvinrr
andauthored
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 <[email protected]>
1 parent a7c5f9d commit f5a6512

File tree

3 files changed

+76
-5
lines changed

3 files changed

+76
-5
lines changed

Diff for: CHANGELOG.md

+29-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,15 @@ release.
3535

3636
## [Unreleased]
3737

38-
## 1.0
38+
## 1.0.1
39+
40+
### Changed
41+
- Changes to support integration with ISIS [#48](https://github.com/DOI-USGS/SpiceQL/pull/48)
42+
43+
### Fixed
44+
- Fixed getLatestKernels bug [#49](https://github.com/DOI-USGS/SpiceQL/pull/49)
45+
46+
## 1.0.0
3947

4048
### Added
4149

@@ -46,9 +54,26 @@ release.
4654
- Adds support for LROC MiniRF [#10](https://github.com/DOI-USGS/SpiceQL/issues/10)
4755
- Adds support for MSL [#15](https://github.com/DOI-USGS/SpiceQL/issues/15)
4856
- Adds support for MER [#14](https://github.com/DOI-USGS/SpiceQL/issues/14)
57+
- Add github workflows [#20](https://github.com/DOI-USGS/SpiceQL/pull/20)
58+
- Added PR template with licensing [#5](https://github.com/DOI-USGS/SpiceQL/pull/5)
59+
60+
### Changed
61+
62+
- Mkdocs update [#26](https://github.com/DOI-USGS/SpiceQL/pull/26)
63+
- FastAPI app [#27](https://github.com/DOI-USGS/SpiceQL/pull/27)
64+
- Clean up any mention of Sphinx [#32](https://github.com/DOI-USGS/SpiceQL/pull/32)
65+
- Supporting ALE's ISD to Kernel functionality [#33](https://github.com/DOI-USGS/SpiceQL/pull/33)
66+
- New inventory class [#31](https://github.com/DOI-USGS/SpiceQL/pull/31)
67+
- Ale changes [#36](https://github.com/DOI-USGS/SpiceQL/pull/36)
68+
- Accept string for ets param [#34](https://github.com/DOI-USGS/SpiceQL/pull/34)
69+
- Dockerize FastAPI [#35](https://github.com/DOI-USGS/SpiceQL/pull/35)
70+
- Validates quality param [#40](https://github.com/DOI-USGS/SpiceQL/pull/40)
71+
- Planetary body search [#42](https://github.com/DOI-USGS/SpiceQL/pull/42)
4972

5073
### Fixed
74+
- Bug fixes + tests [#38](https://github.com/DOI-USGS/SpiceQL/pull/38)
75+
- Bugfixes [#39](https://github.com/DOI-USGS/SpiceQL/pull/39)
76+
- Fixing bugs in the time search [#41](https://github.com/DOI-USGS/SpiceQL/pull/41)
77+
- Fixed bug where cks were using interval scope [#43](https://github.com/DOI-USGS/SpiceQL/pull/43)
78+
- SCLK Bug fixes [#44](https://github.com/DOI-USGS/SpiceQL/pull/44)
5179

52-
### Changed
53-
- SpiceQL source code
54-
- Required administrative files

Diff for: code.json

+46
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,51 @@
9090
"date": {
9191
"metadataLastUpdated": "2023-09-20"
9292
}
93+
},
94+
{
95+
"name": "SpiceQL",
96+
"organization": "U.S. Geological Survey",
97+
"description": "GitLab repository for library that interacts with NAIF's SPICE kernels",
98+
"version": "1.0.1",
99+
"status": "Development",
100+
101+
"permissions": {
102+
"usageType": "openSource",
103+
"licenses": [
104+
{
105+
"name": "Public Domain, CC0-1.0",
106+
"URL": "https://code.usgs.gov/astrogeology/spiceql/-/raw/main/LICENSE.md"
107+
}
108+
]
109+
},
110+
111+
"homepageURL": "https://code.usgs.gov/astrogeology/spiceql/",
112+
"downloadURL": "https://code.usgs.gov/astrogeology/spiceql/-/archive/1.0.1/spiceql-1.0.1.zip",
113+
"disclaimerURL": "https://code.usgs.gov/astrogeology/spiceql/-/raw/1.0.1/DISCLAIMER.md",
114+
"repositoryURL": "https://code.usgs.gov/astrogeology/spiceql.git",
115+
"vcs": "git",
116+
117+
"laborHours": 520,
118+
119+
"tags": [
120+
"Planetary",
121+
"Remote Sensing",
122+
"Data Processing",
123+
"Ephemerides",
124+
"Kernels"
125+
],
126+
127+
"languages": [
128+
"C++", "Python"
129+
],
130+
131+
"contact": {
132+
"name": "Christine Kim",
133+
"email": "[email protected]"
134+
},
135+
136+
"date": {
137+
"metadataLastUpdated": "2025-01-10"
138+
}
93139
}
94140
]

Diff for: recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "spiceql" %}
2-
{% set version = "1.0.0rc1" %}
2+
{% set version = "1.0.1" %}
33

44
package:
55
name: {{ name|lower }}

0 commit comments

Comments
 (0)