Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ticks for 0.10.0 release #585

Merged
merged 4 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,20 @@ release.

## [Unreleased]

## [1.0.0] - 2023-11-15
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
## [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)
- 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]
acpaquette marked this conversation as resolved.
Show resolved Hide resolved

### Fixed
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
14 changes: 7 additions & 7 deletions code.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,22 +230,22 @@
"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": {
"usageType": "openSource",
"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",

Expand All @@ -265,8 +265,8 @@
],

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

"date": {
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.9.1" %}
{% set version = "0.10.0" %}
{% set git_branch = "master" %}
{% set build_number = "0" %}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

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

# To install the library, run the following
#
Expand Down
Loading