From cc000147bbf0060832a1cf3a3a88a6751ebfbf16 Mon Sep 17 00:00:00 2001 From: Andrew Annex Date: Fri, 14 Oct 2022 23:00:02 -0700 Subject: [PATCH] fix for exception error message toolkit version - exceptions now use dynamic lookup of toolkit version for error messages --- CHANGELOG.md | 5 +++++ docs/conf.py | 4 ++-- src/spiceypy/__init__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a09d6123..2d3f6bd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to SpiceyPy will be documented here The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project tries to adhere to [Semantic Versioning](http://semver.org/). +## [5.1.2] - 2022-10-14 +fix for exception error message toolkit version +### Fixed +- exceptions now use dynamic lookup of toolkit version for error messages + ## [5.1.1] - 2022-07-30 fixes macOS arm64 cross compile ### Fixed diff --git a/docs/conf.py b/docs/conf.py index 87d2a66f..a81978ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = "5.1.1" +version = "5.1.2" # The full version, including alpha/beta/rc tags. -release = "5.1.1" +release = "5.1.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/spiceypy/__init__.py b/src/spiceypy/__init__.py index 459e091c..c758252a 100644 --- a/src/spiceypy/__init__.py +++ b/src/spiceypy/__init__.py @@ -22,7 +22,7 @@ SOFTWARE. """ __author__ = "AndrewAnnex" -__version__ = "5.1.1" +__version__ = "5.1.2" from .spiceypy import * from .utils import support_types