diff --git a/CHANGELOG.md b/CHANGELOG.md index 16953d5a..fac7d2cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,28 +4,36 @@ 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.0.1] - 2022-03-23 +minor update to make ld_library_path update safer + +### Fixed +- override of ld_library_path is now temporary + +### Changed +- updated copyrights for 2022 + ## [5.0.0] - 2022-02-17 -## Changed +### Changed - switched to N67 CSPICE, no new wrapper functions yet - removed deprecated named args mentioned in 4.0.1 release notes -## Removed +### Removed - deprecation warnings for params of mtxmg, mtxvg, mxm, mxmg, mxmt, mxmtg, mxvg, vtmvg, xposeg, unormg, vaddg, vdistg, vdotg, vequg, vhatg, vminug, vnromg, vrelg, vsclg, vsepg, vsubg, vzerog - ncol/nrow params for: mtxmg, mtxvg, mxm, mxmg, mxmt, mxmtg, mxvg, vtmvg, xposeg - ndim param for: unormg, vaddg, vdistg, vdotg, vequg, vhatg, vminug, vnromg, vrelg, vsclg, vsepg, vsubg, vzerog - ## [4.0.3] - 2021-11-14 -## Added +### Added - changelog now rendered in docs - runtime override of cspice via env var or ld_library_path - pyproject.toml and setup.cfg - CSPICE N66 patches from NAIF/conda-forge feedstock - builds for aarch64 and macos arm64 -## Changed +### Changed - switched to src layout - switched "cspice.dll/.so" to "libcspice.dll/so" - updated get_spice.py to build cspice from source diff --git a/docs/conf.py b/docs/conf.py index 1fcf0471..36ab2ddc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = "5.0.0" +version = "5.0.1" # The full version, including alpha/beta/rc tags. -release = "5.0.0" +release = "5.0.1" # 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 4b58ad48..ff1896e2 100644 --- a/src/spiceypy/__init__.py +++ b/src/spiceypy/__init__.py @@ -22,7 +22,7 @@ SOFTWARE. """ __author__ = "AndrewAnnex" -__version__ = "5.0.0" +__version__ = "5.0.1" from .spiceypy import * from .utils import support_types