Index: DamClients/DamPythonInterface/trunk/doc/source/index.rst =================================================================== diff -u -r3539 -r3542 --- DamClients/DamPythonInterface/trunk/doc/source/index.rst (.../index.rst) (revision 3539) +++ DamClients/DamPythonInterface/trunk/doc/source/index.rst (.../index.rst) (revision 3542) @@ -44,10 +44,6 @@ You don't need to install anything manually, as the pip installation should take care of it. -Initialization of classes -------------------------- - - Tutorial -------- The tutorial can be found in :doc:`this document. ` @@ -66,6 +62,10 @@ =========================== For more tips refer :doc:`this document. ` +Release notes +============= +The release notes can be found in :doc:`this document. ` + Indices and tables ================== Index: DamClients/DamPythonInterface/trunk/doc/source/release_notes.rst =================================================================== diff -u --- DamClients/DamPythonInterface/trunk/doc/source/release_notes.rst (revision 0) +++ DamClients/DamPythonInterface/trunk/doc/source/release_notes.rst (revision 3542) @@ -0,0 +1,18 @@ +Release notes +============= + +Version 21.1.500.xxx +-------------------- + +First version of the DamPythonInterface a Python API to create and run a DAMEngine input xml. +The following functionality is implemented: + +* The DamPythonInterface can write a xml that can be used as input to the DAMEngine. +* The user can run the DAMEngine by specifying a input xml file. +* The following sections of the DAMEngine xml file were implemented: + * Locations + * SurfaceLines + * Soils + * Segments + * StabilityParameters + * SoilProfiles1D \ No newline at end of file Index: DamClients/DamPythonInterface/trunk/src/dampythoninterface/__init__.py =================================================================== diff -u -r3501 -r3542 --- DamClients/DamPythonInterface/trunk/src/dampythoninterface/__init__.py (.../__init__.py) (revision 3501) +++ DamClients/DamPythonInterface/trunk/src/dampythoninterface/__init__.py (.../__init__.py) (revision 3542) @@ -20,7 +20,7 @@ # All rights reserved. -__version__ = "0.1.0" +__version__ = "21.1.0" from .input import * from .soil import * from .segment import *