Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -35,13 +35,21 @@ release. ...@@ -35,13 +35,21 @@ release.
## [Unreleased] ## [Unreleased]
## [1.0.0] - 2023-11-15 ## [0.10.0] - 2024-01-08
### 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)
- 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) - 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) - 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
- 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)
...@@ -50,7 +58,6 @@ release. ...@@ -50,7 +58,6 @@ release.
### Changed ### Changed
- Removed the affine6p library and replaced affine6p's affine transformation with a numpy solution [#579](https://github.com/DOI-USGS/ale/pull/579) - 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 ## [0.9.1] - 2023-06-05
### Changed ### Changed
......
...@@ -7,7 +7,7 @@ ...@@ -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 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") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
......
...@@ -230,7 +230,7 @@ ...@@ -230,7 +230,7 @@
"name": "ale", "name": "ale",
"organization": "U.S. Geological Survey", "organization": "U.S. Geological Survey",
"description": "GitLab repository for the Abstraction Layer for Ephemerides package", "description": "GitLab repository for the Abstraction Layer for Ephemerides package",
"version": "1.0.0", "version": "0.10.0",
"status": "Production", "status": "Production",
"permissions": { "permissions": {
...@@ -238,14 +238,14 @@ ...@@ -238,14 +238,14 @@
"licenses": [ "licenses": [
{ {
"name": "Public Domain, CC0-1.0", "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", "homepageURL": "https://code.usgs.gov/astrogeology/ale/-/tree/0.10.0",
"downloadURL": "https://code.usgs.gov/astrogeology/ale/-/archive/1.0.0/ale-1.0.0.zip", "downloadURL": "https://code.usgs.gov/astrogeology/ale/-/archive/0.10.0/ale-0.10.0.zip",
"disclaimerURL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.0.0/DISCLAIMER.md", "disclaimerURL": "https://code.usgs.gov/astrogeology/ale/-/raw/0.10.0/DISCLAIMER.md",
"repositoryURL": "https://code.usgs.gov/astrogeology/ale.git", "repositoryURL": "https://code.usgs.gov/astrogeology/ale.git",
"vcs": "git", "vcs": "git",
...@@ -265,8 +265,8 @@ ...@@ -265,8 +265,8 @@
], ],
"contact": { "contact": {
"name": "Kelvin Rodriguez", "name": "Adam Paquette",
"email": "krodriguez@usgs.gov" "email": "acpaquette@usgs.gov"
}, },
"date": { "date": {
......
{% set version = "0.9.1" %} {% set version = "0.10.0" %}
{% set git_branch = "master" %} {% set git_branch = "master" %}
{% set build_number = "0" %} {% set build_number = "0" %}
......
...@@ -4,7 +4,7 @@ import sys ...@@ -4,7 +4,7 @@ import sys
from setuptools import setup, find_packages from setuptools import setup, find_packages
NAME = "Ale" NAME = "Ale"
VERSION = "1.0.0" VERSION = "0.10.0"
# To install the library, run the following # To install the library, run the following
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment