diff --git a/.appveyor.yml b/.appveyor.yml index 8a53f1700d64b0583f2fc3653662b1a4b0428e28..af70f8c6e647c16f8f738767f56097fb6b80bd6e 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 dbb9f3394f518982ca54996b8efa4d3160bc0c30..31e559e04d95b76d5376ac1a6727357fa0de15b5 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 f1be970784e263179a534a3b229d01ae1a434a72..852af9900845f6b1e68e5bb691bef6ef115d064b 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 96076ea850e6828592271ccb92a97512541d50a9..e2c2498e9858d169ddaeeddb0d9a3df46950f49b 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 d4d6a36987983aa10a45c6b638d0b52b2b59aeff..b450dc6010e7e2e00f2dd6f14ad5506a66c39c98 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 22077e00e49539c8de30fa93fa468aad947e0cba..de320246d7654d5e1067d2f17e0f32d5dcd39f0f 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 #