Unverified Commit ec889338 authored by acpaquette's avatar acpaquette Committed by GitHub
Browse files

Ticks for 0.10.0 release (#585)

* Ticks for 0.10.0 release

* Updated date in changelog

* Updated changelog entries

* Fixed spicypy update changelog link
parent a7d8a148
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -35,13 +35,21 @@ release.

## [Unreleased]

## [1.0.0] - 2023-11-15 
## [0.10.0] - 2024-01-08 

### Added

- Mariner10 IsisLabelNaifSpice driver, tests, and test data [#547](https://github.com/DOI-USGS/ale/pull/547)
- Clementine UVVIS IsisLabelNaifSpice driver, tests, and test data [#546](https://github.com/DOI-USGS/ale/pull/546)
- Clementine LWIR, NIR, and HIRES IsisLabelNaifSpice driver, tests, and test data [#565](https://github.com/DOI-USGS/ale/pull/565)
- Hayabusa NIRS IsisLabelNaifSpice driver, tests and test data [#532](https://github.com/DOI-USGS/ale/pull/532)
- LO HighCamera IsisLabelNaifSpice driver, tests and test data [#533](https://github.com/DOI-USGS/ale/pull/553)
- DawnFC IsisLabelNaifSpice driver, tests, and test data [#567](https://github.com/DOI-USGS/ale/pull/567)
- DawnVIR IsisLabelNaifSpice driver, tests, and test data [#566](https://github.com/DOI-USGS/ale/pull/566)
- Updated the spiceypy version used in environment.yml [#552]
- Added Local option to isd_generate, used to generate sky based projections for rover data [#564](https://github.com/DOI-USGS/ale/pull/564)
- Added Nadir option to isd_generate, used to generate nadir instrument pointing [#564](https://github.com/DOI-USGS/ale/pull/564)
- Added radial and tangential distortion model [#575](https://github.com/DOI-USGS/ale/pull/575)
- Updated the spiceypy version used in environment.yml [#552](https://github.com/DOI-USGS/ale/issues/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)
@@ -50,7 +58,6 @@ release.
### Changed
- Removed the affine6p library and replaced affine6p's affine transformation with a numpy solution [#579](https://github.com/DOI-USGS/ale/pull/579) 


## [0.9.1] - 2023-06-05

### Changed
+1 −1
Original line number Diff line number Diff line
@@ -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 1.0.0 DESCRIPTION "Abstraction Library for Ephemerides ")
project(ale VERSION 0.10.0 DESCRIPTION "Abstraction Library for Ephemerides ")

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

+7 −7
Original line number Diff line number Diff line
@@ -230,7 +230,7 @@
    "name": "ale",
    "organization": "U.S. Geological Survey",
    "description": "GitLab repository for the Abstraction Layer for Ephemerides package",
    "version": "1.0.0",
    "version": "0.10.0",
    "status": "Production",

    "permissions": {
@@ -238,14 +238,14 @@
      "licenses": [
        {
          "name": "Public Domain, CC0-1.0",
          "URL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.0.0/LICENSE.md"
          "URL": "https://code.usgs.gov/astrogeology/ale/-/raw/0.10.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",
    "homepageURL": "https://code.usgs.gov/astrogeology/ale/-/tree/0.10.0",
    "downloadURL": "https://code.usgs.gov/astrogeology/ale/-/archive/0.10.0/ale-0.10.0.zip",
    "disclaimerURL": "https://code.usgs.gov/astrogeology/ale/-/raw/0.10.0/DISCLAIMER.md",
    "repositoryURL": "https://code.usgs.gov/astrogeology/ale.git",
    "vcs": "git",

@@ -265,8 +265,8 @@
    ],

    "contact": {
      "name": "Kelvin Rodriguez",
      "email": "krodriguez@usgs.gov"
      "name": "Adam Paquette",
      "email": "acpaquette@usgs.gov"
    },

    "date": {
+1 −1
Original line number Diff line number Diff line
{% set version = "0.9.1" %}
{% set version = "0.10.0" %}
{% set git_branch = "master" %}
{% set build_number = "0" %}

+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ import sys
from setuptools import setup, find_packages

NAME = "Ale"
VERSION = "1.0.0"
VERSION = "0.10.0"

# To install the library, run the following
#