Skip to content

Commit

Permalink
fix for exception error message toolkit version
Browse files Browse the repository at this point in the history
- exceptions now use dynamic lookup of toolkit version for error messages
  • Loading branch information
AndrewAnnex committed Oct 15, 2022
1 parent ed73669 commit cc00014
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/spiceypy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SOFTWARE.
"""
__author__ = "AndrewAnnex"
__version__ = "5.1.1"
__version__ = "5.1.2"

from .spiceypy import *
from .utils import support_types
Expand Down

0 comments on commit cc00014

Please sign in to comment.