From b9a28e695e453b2d953b9e076283344777248cb3 Mon Sep 17 00:00:00 2001 From: Kelvin Rodriguez <krodriguez@usgs.gov> Date: Mon, 20 Nov 2023 08:37:41 -0700 Subject: [PATCH] Spiceypy version bump (#578) * updated spiceypy version * added changelog entry * bumped version * updated changelog * addressing feedback --- .appveyor.yml | 2 +- CHANGELOG.md | 4 +++- CMakeLists.txt | 2 +- code.json | 51 +++++++++++++++++++++++++++++++++++++++++++++++-- environment.yml | 2 +- setup.py | 2 +- 6 files changed, 56 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 8a53f17..af70f8c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: '0.9.1.{build}' +version: '1.0.0.{build}' image: Visual Studio 2019 diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb9f33..31e559e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,14 +35,16 @@ release. ## [Unreleased] +## [1.0.0] - 2023-11-15 + ### Added - Mariner10 IsisLabelNaifSpice driver, tests, and test data [#547](https://github.com/DOI-USGS/ale/pull/547) - DawnFC IsisLabelNaifSpice driver, tests, and test data [#567](https://github.com/DOI-USGS/ale/pull/567) +- Updated the spiceypy version used in environment.yml [#552] ### Fixed - Fixed LRO MiniRF drivers naif keywords focal to pixel and pixel to focal translations to be correct. [#569](https://github.com/DOI-USGS/ale/pull/569) - ## [0.9.1] - 2023-06-05 ### Changed diff --git a/CMakeLists.txt b/CMakeLists.txt index f1be970..852af99 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ # Specify the required version of CMake. # cmake 3.15 required for findPython virtualenv configuration cmake_minimum_required(VERSION 3.15) -project(ale VERSION 0.9.1 DESCRIPTION "Abstraction Library for Ephemerides ") +project(ale VERSION 1.0.0 DESCRIPTION "Abstraction Library for Ephemerides ") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") diff --git a/code.json b/code.json index 96076ea..e2c2498 100644 --- a/code.json +++ b/code.json @@ -218,8 +218,55 @@ ], "contact": { - "name": "Jason Laura", - "email": "jlaura@usgs.gov" + "name": "Kelvin Rodriguez", + "email": "krodriguez@usgs.gov" + }, + + "date": { + "metadataLastUpdated": "2023-02-23" + } + }, + { + "name": "ale", + "organization": "U.S. Geological Survey", + "description": "GitLab repository for the Abstraction Layer for Ephemerides package", + "version": "1.0.0", + "status": "Production", + + "permissions": { + "usageType": "openSource", + "licenses": [ + { + "name": "Public Domain, CC0-1.0", + "URL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.0.0/LICENSE.md" + } + ] + }, + + "homepageURL": "https://code.usgs.gov/astrogeology/ale/-/tree/1.0.0", + "downloadURL": "https://code.usgs.gov/astrogeology/ale/-/archive/1.0.0/ale-1.0.0.zip", + "disclaimerURL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.0.0/DISCLAIMER.md", + "repositoryURL": "https://code.usgs.gov/astrogeology/ale.git", + "vcs": "git", + + "laborHours": 480, + + "tags": [ + "Planetary", + "Remote Sensing", + "Data Processing", + "Ephemerides", + "Community Sensor Model" + ], + + "languages": [ + "C++", + "Python" + ], + + "contact": { + "name": "Kelvin Rodriguez", + "email": "krodriguez@usgs.gov" }, "date": { diff --git a/environment.yml b/environment.yml index d4d6a36..b450dc6 100644 --- a/environment.yml +++ b/environment.yml @@ -16,7 +16,7 @@ dependencies: - python - python-dateutil - scipy>=1.4.0,<1.11 - - spiceypy>=5.1.0 + - spiceypy>=6.0.0 - pyyaml - pytest - pytest-cov diff --git a/setup.py b/setup.py index 22077e0..de32024 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys from setuptools import setup, find_packages NAME = "Ale" -VERSION = "0.9.1" +VERSION = "1.0.0" # To install the library, run the following # -- GitLab