Skip to content

Commit

Permalink
update 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierpascalhenry committed Sep 6, 2019
1 parent 70eb3ca commit b029c47
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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{}{}


Expand Down
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions Documentation/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version:
-------

EGADS Lineage 1.1.1
EGADS Lineage 1.1.2


Developments:
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 4 additions & 0 deletions egads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down
2 changes: 1 addition & 1 deletion egads/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.1.1'
__version__ = '1.1.2'
__branch__ = 'Lineage'
2 changes: 1 addition & 1 deletion egads_lineage.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions egads_lineage.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b029c47

Please sign in to comment.