Unverified Commit b9a28e69 authored by Kelvin Rodriguez's avatar Kelvin Rodriguez Committed by GitHub
Browse files

Spiceypy version bump (#578)

* updated spiceypy version

* added changelog entry

* bumped version

* updated changelog

* addressing feedback
parent bdeb1ded
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
version: '0.9.1.{build}'
version: '1.0.0.{build}'


image: Visual Studio 2019
image: Visual Studio 2019


+3 −1
Original line number Original line Diff line number Diff line
@@ -35,14 +35,16 @@ release.


## [Unreleased]
## [Unreleased]


## [1.0.0] - 2023-11-15 

### Added
### Added
- Mariner10 IsisLabelNaifSpice driver, tests, and test data [#547](https://github.com/DOI-USGS/ale/pull/547)
- 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)
- 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
- 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)
- 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
## [0.9.1] - 2023-06-05


### Changed
### Changed
+1 −1
Original line number Original line Diff line number Diff line
@@ -7,7 +7,7 @@
# Specify the required version of CMake.
# Specify the required version of CMake.
# cmake 3.15 required for findPython virtualenv configuration
# cmake 3.15 required for findPython virtualenv configuration
cmake_minimum_required(VERSION 3.15)
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")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")


+49 −2
Original line number Original line Diff line number Diff line
@@ -218,8 +218,55 @@
    ],
    ],


    "contact": {
    "contact": {
      "name": "Jason Laura",
      "name": "Kelvin Rodriguez",
      "email": "jlaura@usgs.gov"
      "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": {
    "date": {
+1 −1
Original line number Original line Diff line number Diff line
@@ -16,7 +16,7 @@ dependencies:
  - python
  - python
  - python-dateutil
  - python-dateutil
  - scipy>=1.4.0,<1.11
  - scipy>=1.4.0,<1.11
  - spiceypy>=5.1.0
  - spiceypy>=6.0.0
  - pyyaml
  - pyyaml
  - pytest
  - pytest
  - pytest-cov
  - pytest-cov
Loading