Skip to content

Commit 0b0ca35

Browse files
authored
Bump for 1.2.4 (#97)
1 parent 0eea5fa commit 0b0ca35

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ release.
3434
-->
3535
## [Unreleased]
3636

37+
## 1.2.4
38+
3739
### Changed
3840
- Changed `getTargetStates` and `getTargetOrientations` fastapi endpoints to take a start, stop, and number of records rather than a list of starts, stops, and exposure times [#94](https://github.com/DOI-USGS/SpiceQL/pull/94)
3941
- Changed `getExactTargetOrientations` to take a frame to get the exact times in [#94](https://github.com/DOI-USGS/SpiceQL/pull/94)

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include(CMakeDependentOption)
22
cmake_minimum_required(VERSION 3.10)
3-
project(SpiceQL VERSION 1.2.3 DESCRIPTION "Spice Query Library")
3+
project(SpiceQL VERSION 1.2.4 DESCRIPTION "Spice Query Library")
44

55
set(PACKAGE_VERSION ${PROJECT_VERSION})
66

@@ -60,6 +60,7 @@ if(SPICEQL_BUILD_LIB)
6060
find_package(cereal REQUIRED)
6161
find_package(spdlog REQUIRED)
6262
find_package(HighFive REQUIRED)
63+
find_package(CURL REQUIRED)
6364

6465
set(SPICEQL_INSTALL_INCLUDE_DIR "include/SpiceQL")
6566
set(SPICEQL_SRC_FILES ${CMAKE_CURRENT_SOURCE_DIR}/SpiceQL/src/spiceql.cpp
@@ -152,6 +153,7 @@ target_include_directories(SpiceQL
152153
cspice
153154
spdlog::spdlog_header_only
154155
HighFive
156+
${CURL_LIBRARIES}
155157
)
156158

157159
install(TARGETS SpiceQL LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})

code.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,5 +272,50 @@
272272
"date": {
273273
"metadataLastUpdated": "2025-07-11"
274274
}
275+
}, {
276+
"name": "SpiceQL",
277+
"organization": "U.S. Geological Survey",
278+
"description": "GitLab repository for library that interacts with NAIF's SPICE kernels",
279+
"version": "1.2.4",
280+
"status": "Development",
281+
282+
"permissions": {
283+
"usageType": "openSource",
284+
"licenses": [
285+
{
286+
"name": "Public Domain, CC0-1.0",
287+
"URL": "https://code.usgs.gov/astrogeology/spiceql/-/raw/main/LICENSE.md"
288+
}
289+
]
290+
},
291+
292+
"homepageURL": "https://code.usgs.gov/astrogeology/spiceql/",
293+
"downloadURL": "https://code.usgs.gov/astrogeology/spiceql/-/archive/1.2.4/spiceql-1.2.4.zip",
294+
"disclaimerURL": "https://code.usgs.gov/astrogeology/spiceql/-/raw/1.2.4/DISCLAIMER.md",
295+
"repositoryURL": "https://code.usgs.gov/astrogeology/spiceql.git",
296+
"vcs": "git",
297+
298+
"laborHours": 520,
299+
300+
"tags": [
301+
"Planetary",
302+
"Remote Sensing",
303+
"Data Processing",
304+
"Ephemerides",
305+
"Kernels"
306+
],
307+
308+
"languages": [
309+
"C++", "Python"
310+
],
311+
312+
"contact": {
313+
"name": "Adam Paquette",
314+
"email": "[email protected]"
315+
},
316+
317+
"date": {
318+
"metadataLastUpdated": "2025-07-31"
319+
}
275320
}
276321
]

0 commit comments

Comments
 (0)