diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f4278..4940d98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [v1.0.5] ### Added - Added support for SPICE kernels of type 9, this allows reading SOHO spice files. - Added support for SPICE kernels of type 18, this allows reading Rosetta spice files. -- Added Equatorial frame as observed calculation. +- Added calculation of Earth's precession, allowing the computation of time dependent + equatorial vectors. ### Changed @@ -346,6 +347,7 @@ Initial Release [Unreleased]: https://github.com/IPAC-SW/kete/tree/main +[1.0.5]: https://github.com/IPAC-SW/kete/releases/tag/v1.0.5 [1.0.4]: https://github.com/IPAC-SW/kete/releases/tag/v1.0.4 [1.0.3]: https://github.com/IPAC-SW/kete/releases/tag/v1.0.3 [1.0.2]: https://github.com/IPAC-SW/kete/releases/tag/v1.0.2 diff --git a/Cargo.toml b/Cargo.toml index 6fecc81..f0ece58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "_core" -version = "1.0.4" +version = "1.0.5" edition = "2021" readme = "README.md" license = "BSD-3-Clause" diff --git a/pyproject.toml b/pyproject.toml index d58e6aa..b15fa4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kete" -version = "1.0.4" +version = "1.0.5" description = "Kete Asteroid Survey Tools" readme = "README.md" authors = [{name = "Dar Dahlen", email = "ddahlen@ipac.caltech.edu"}, diff --git a/src/kete_core/Cargo.toml b/src/kete_core/Cargo.toml index b6350cc..05c8d5a 100644 --- a/src/kete_core/Cargo.toml +++ b/src/kete_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kete_core" -version = "1.0.4" +version = "1.0.5" edition = "2021" readme = "README.md" license = "BSD-3-Clause"