Skip to content

Commit

Permalink
Ticks for 0.10.0 release (#585)
Browse files Browse the repository at this point in the history
* Ticks for 0.10.0 release

* Updated date in changelog

* Updated changelog entries

* Fixed spicypy update changelog link
  • Loading branch information
acpaquette committed Jan 8, 2024
1 parent a7d8a14 commit ec88933
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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

0 comments on commit ec88933

Please sign in to comment.