Skip to content

Commit cc00014

Browse files
committed
fix for exception error message toolkit version
- exceptions now use dynamic lookup of toolkit version for error messages
1 parent ed73669 commit cc00014

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to SpiceyPy will be documented here
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project tries to adhere to [Semantic Versioning](http://semver.org/).
66

7+
## [5.1.2] - 2022-10-14
8+
fix for exception error message toolkit version
9+
### Fixed
10+
- exceptions now use dynamic lookup of toolkit version for error messages
11+
712
## [5.1.1] - 2022-07-30
813
fixes macOS arm64 cross compile
914
### Fixed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
# built documents.
6666
#
6767
# The short X.Y version.
68-
version = "5.1.1"
68+
version = "5.1.2"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "5.1.1"
70+
release = "5.1.2"
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

src/spiceypy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424
__author__ = "AndrewAnnex"
25-
__version__ = "5.1.1"
25+
__version__ = "5.1.2"
2626

2727
from .spiceypy import *
2828
from .utils import support_types

0 commit comments

Comments
 (0)