diff --git a/Documentation/EGADS Algorithm Handbook - LATEX/cover/alg_cover.tex b/Documentation/EGADS Algorithm Handbook - LATEX/cover/alg_cover.tex index c0c4b97..d8f8834 100644 --- a/Documentation/EGADS Algorithm Handbook - LATEX/cover/alg_cover.tex +++ b/Documentation/EGADS Algorithm Handbook - LATEX/cover/alg_cover.tex @@ -24,7 +24,7 @@ \setlength{\voffset}{.0cm} \logoeufar -\title{EUFAR, Olivier Henry}{}{EGADS Lineage Algorithm Handbook}{Version 1.1.1} +\title{EUFAR, Olivier Henry}{}{EGADS Lineage Algorithm Handbook}{Version 1.1.2} %\author{}{} diff --git a/Documentation/EGADS Lineage Algorithm Handbook - v1.1.1.pdf b/Documentation/EGADS Lineage Algorithm Handbook - v1.1.2.pdf similarity index 99% rename from Documentation/EGADS Lineage Algorithm Handbook - v1.1.1.pdf rename to Documentation/EGADS Lineage Algorithm Handbook - v1.1.2.pdf index 12bdacf..3b4008a 100644 Binary files a/Documentation/EGADS Lineage Algorithm Handbook - v1.1.1.pdf and b/Documentation/EGADS Lineage Algorithm Handbook - v1.1.2.pdf differ diff --git a/Documentation/EGADS Lineage Documentation - v1.1.1.pdf b/Documentation/EGADS Lineage Documentation - v1.1.2.pdf similarity index 95% rename from Documentation/EGADS Lineage Documentation - v1.1.1.pdf rename to Documentation/EGADS Lineage Documentation - v1.1.2.pdf index d149314..1564de2 100644 Binary files a/Documentation/EGADS Lineage Documentation - v1.1.1.pdf and b/Documentation/EGADS Lineage Documentation - v1.1.2.pdf differ diff --git a/Documentation/changelog.txt b/Documentation/changelog.txt index 1ef3e48..6766720 100644 --- a/Documentation/changelog.txt +++ b/Documentation/changelog.txt @@ -10,6 +10,12 @@ To fix list: ------------ +September 6 2019, Release version 1.1.2 +======================================= + MODIFIED: + - improved the function to reload user-defined algorithms. + + September 5 2019, Release version 1.1.1 ======================================= MODIFIED: diff --git a/PKG-INFO b/PKG-INFO index eda9bf3..9e80ed4 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: egads-lineage -Version: 1.1.1 +Version: 1.1.2 Summary: EGADS: EUFAR General Airborne Data-processing Software Home-page: https://github.com/EUFAR/egads/tree/Lineage Author: EUFAR, Olivier Henry diff --git a/README.md b/README.md index feace3b..e569b45 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Version: ------- -EGADS Lineage 1.1.1 +EGADS Lineage 1.1.2 Developments: diff --git a/doc/source/conf.py b/doc/source/conf.py index ba4112d..5bb2652 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '1.1.1' +version = '1.1.2' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/egads/__init__.py b/egads/__init__.py index 48b7cf1..3e6260a 100644 --- a/egads/__init__.py +++ b/egads/__init__.py @@ -114,6 +114,10 @@ def _reload_user_algorithms(): logging.debug('egads - __init__.py - _reload_user_algorithms') import importlib importlib.reload(user_algorithms) + rep_list = [item for item in dir(egads.user_algorithms) if '__' not in item] + rep_list.remove('user_algorithms') + for rep in rep_list: + importlib.reload(getattr(user_algorithms, rep)) if rq_version != 'requests is not available': diff --git a/egads/_version.py b/egads/_version.py index 26633b2..a1909e9 100644 --- a/egads/_version.py +++ b/egads/_version.py @@ -1,2 +1,2 @@ -__version__ = '1.1.1' +__version__ = '1.1.2' __branch__ = 'Lineage' diff --git a/egads_lineage.egg-info/PKG-INFO b/egads_lineage.egg-info/PKG-INFO index b77f8b3..d0e3af0 100644 --- a/egads_lineage.egg-info/PKG-INFO +++ b/egads_lineage.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: egads-lineage -Version: 1.1.1 +Version: 1.1.2 Summary: EGADS: EUFAR General Airborne Data-processing Software Home-page: https://github.com/EUFAR/egads/tree/Lineage Author: EUFAR, Olivier Henry diff --git a/egads_lineage.egg-info/SOURCES.txt b/egads_lineage.egg-info/SOURCES.txt index d44d057..cb4123a 100644 --- a/egads_lineage.egg-info/SOURCES.txt +++ b/egads_lineage.egg-info/SOURCES.txt @@ -3,8 +3,8 @@ MANIFEST.in README.md setup.cfg setup.py -Documentation/EGADS Lineage Algorithm Handbook - v1.1.1.pdf -Documentation/EGADS Lineage Documentation - v1.1.1.pdf +Documentation/EGADS Lineage Algorithm Handbook - v1.1.2.pdf +Documentation/EGADS Lineage Documentation - v1.1.2.pdf Documentation/changelog.txt Documentation/EGADS Algorithm Handbook - LATEX/EGADS_alg_doc.tex Documentation/EGADS Algorithm Handbook - LATEX/example.py diff --git a/setup.py b/setup.py index 584d2c7..458ca67 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ doclines = __doc__.split('\n') setup(name='egads-lineage', - version='1.1.1', + version='1.1.2', description=doclines[0], long_description='\n'.join(doclines[2:]), author='EUFAR, Olivier Henry',