From 4946f186a14ae0292eda39b92a1bc6bb13ef7629 Mon Sep 17 00:00:00 2001 From: Christopher Teubert Date: Tue, 16 Nov 2021 18:52:42 -0800 Subject: [PATCH] Update version # --- setup.py | 2 +- src/prog_algs/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index edaaa3d5..ebbf37fa 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = 'prog_algs', - version = '1.2.0', + version = '1.2.1', description = "The NASA Prognostics Algorithm Package is a framework for model-based prognostics (computation of remaining useful life) of engineering systems. It includes algorithms for state estimation and prediction, including uncertainty propagation. The algorithms use prognostic models (see prog_models) to perform estimation and prediction. The package enables rapid development of prognostics solutions for given models of components and systems. Algorithms can be swapped for comparative studies and evaluations", long_description=long_description, long_description_content_type='text/markdown', diff --git a/src/prog_algs/__init__.py b/src/prog_algs/__init__.py index b3935025..920df7e5 100644 --- a/src/prog_algs/__init__.py +++ b/src/prog_algs/__init__.py @@ -5,7 +5,7 @@ import warnings -__version__ = '1.2.0' +__version__ = '1.2.1' def run_prog_playback(obs, pred, future_loading, output_measurements, **kwargs): warnings.warn("Depreciated in 1.2.0, will be removed in a future release.", DeprecationWarning)