diff --git a/CHANGELOG.md b/CHANGELOG.md index a0237596c..ddf79b67b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,10 +35,22 @@ release. ## [Unreleased] +## [1.1.0] - 2026-02-17 + +### Fixed +- Fixed ephemeris stop time in Chandrayaan2 TMC2 driver. [#681](https://github.com/DOI-USGS/ale/pull/681/changes) + +- Fixed focal plane to detector lines/samples as well as rely on IAK for rotation corrections in Chandrayaan2 OHRC driver. [#682](https://github.com/DOI-USGS/ale/pull/682) + +### Added +- Added TMC_FORE, TMC_NADIR, and TMC_AFT instrument IDs to Chandrayaan2 driver. [#678](https://github.com/DOI-USGS/ale/pull/678) - Added optional boolean flag `remove_kernels` to the `props` dict in the `loads()` func to allow the user to add the `kernels` key in the output ISD. Added the `misc` kernel key for user-entered kernels. Format the kernels value to always be dict type in ISD generation. [#675](https://github.com/DOI-USGS/ale/pull/675) -- Sets ALE's default log level to ERROR instead of INFO, which was too verbose. [#679](https://github.com/DOI-USGS/ale/pull/679) +- Added support for loading ISIS metadata from GDAL drivers when using GDAL 3.12.0 or newer. [#676](https://github.com/DOI-USGS/ale/pull/676) + +### Changed +- Sets ALE's default log level to ERROR instead of INFO, which was too verbose. [#679](https://github.com/DOI-USGS/ale/pull/679) ## [1.0.2] diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e500f38c..af214899a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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.2 DESCRIPTION "Abstraction Library for Ephemerides ") +project(ale VERSION 1.1.0 DESCRIPTION "Abstraction Library for Ephemerides ") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") diff --git a/code.json b/code.json index fdd2b7d5e..25eeaec44 100644 --- a/code.json +++ b/code.json @@ -460,5 +460,52 @@ "date": { "metadataLastUpdated": "2025-08-20" } + }, + { + "name": "ale", + "organization": "U.S. Geological Survey", + "description": "GitLab repository for the Abstraction Layer for Ephemerides package", + "version": "1.1.0", + "status": "Production", + + "permissions": { + "usageType": "openSource", + "licenses": [ + { + "name": "Public Domain, CC0-1.0", + "URL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.1.0/LICENSE.md" + } + ] + }, + + "homepageURL": "https://code.usgs.gov/astrogeology/ale/-/tree/1.1.0", + "downloadURL": "https://code.usgs.gov/astrogeology/ale/-/archive/1.1.0/ale-1.1.0.zip", + "disclaimerURL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.1.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": { + "metadataLastUpdated": "2026-02-09" + } } ] diff --git a/setup.py b/setup.py index 29854a5e0..8ed3f2730 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages NAME = "Ale" -VERSION = "1.0.2" +VERSION = "1.1.0" # To install the library, run the following #