diff --git a/CHANGELOG.md b/CHANGELOG.md
index 791e85e736aaaa34169007ca0751ed5610a24ee9..dbf63aed9b5fdf82462682b531d7c184161f6d56 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 852af9900845f6b1e68e5bb691bef6ef115d064b..d3d7143884ed1397364a64c25133f595e4ae72c6 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.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")
 
diff --git a/code.json b/code.json
index e2c2498e9858d169ddaeeddb0d9a3df46950f49b..0ab86bf5bdde166362b97adb0e744b5eecb8d664 100644
--- a/code.json
+++ b/code.json
@@ -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": {
diff --git a/recipe/meta.yaml b/recipe/meta.yaml
index 80bc112dd500111904ab566f345eae2b76682864..4ea61727b7a545421690ec5b542e327e8af9e5fd 100644
--- a/recipe/meta.yaml
+++ b/recipe/meta.yaml
@@ -1,4 +1,4 @@
-{% set version = "0.9.1" %}
+{% set version = "0.10.0" %}
 {% set git_branch = "master" %}
 {% set build_number = "0" %}
 
diff --git a/setup.py b/setup.py
index de320246d7654d5e1067d2f17e0f32d5dcd39f0f..2f7d5788746ec93206bed206e89aa6bb926fb9e1 100644
--- a/setup.py
+++ b/setup.py
@@ -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
 #