Skip to content

Commit

Permalink
update 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierpascalhenry committed Aug 14, 2019
1 parent fbf6e52 commit af75c10
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 11 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.0.2}
\title{EUFAR, Olivier Henry}{}{EGADS Lineage Algorithm Handbook}{Version 1.0.3}
%\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:
------------


August 14 2019, Release version 1.0.3
=====================================
FIXED:
- a right parenthesis in a logging message was missing in the code to create the user algorithm structure and this could lead to an error.


August 12 2019, Release version 1.0.2
=====================================
FIXED:
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.0.2
Version: 1.0.3
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.0.2
EGADS Lineage 1.0.3


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.0.2'
version = '1.0.3'
# The full version, including alpha/beta/rc tags.
release = '1.0.2'
release = '1.0.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.0.2'
__version__ = '1.0.3'
__branch__ = 'Lineage'
2 changes: 1 addition & 1 deletion egads/utils/egads_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _create_user_algorithms_structure(main_path):
+ " logging.info('egads [user/" + folder + "] algorithms have been loaded')\n"
+ 'except Exception as e:\n'
+ " logging.error('an error occured during the loading of a [user/" + folder
+ "] algorithm: ' + str(e)\n")
+ "] algorithm: ' + str(e))\n")
init_file = open(os.path.join(user_path, folder) + '/__init__.py', 'w')
init_file.write(init_string)
init_file.close()
Expand Down
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.0.2
Version: 1.0.3
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.0.2.pdf
Documentation/EGADS Lineage Documentation - v1.0.2.pdf
Documentation/EGADS Lineage Algorithm Handbook - v1.0.3.pdf
Documentation/EGADS Lineage Documentation - v1.0.3.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.0.2',
version='1.0.3',
description=doclines[0],
long_description='\n'.join(doclines[2:]),
author='EUFAR, Olivier Henry',
Expand Down

0 comments on commit af75c10

Please sign in to comment.