diff --git a/docs/changelog.md b/docs/changelog.md index 5790e25..6425f97 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,14 +4,18 @@ Changes and additions to the examples and analyses are given here. ## Latest Version -### Under development: Version 0.2 +### Under development: Version 0.3 + +- Watch this space! + +## Previous Versions + +### Version 0.2 - Migrated to [MyST](https://myst-parser.readthedocs.io/en/latest/) document parser - Added [Groundstation communication times analysis](how_to_guides/basics/gs_access.ipynb) - Added [Hohmann Transfer](how_to_guides/maneuver/hohmann_1.ipynb) -## Previous Versions - ### Version 0.1 (25 Mar 2021) - Initialised the project with three analyses (energy conservation properties of scipy diff solvers in the context of diff --git a/docs/conf.py b/docs/conf.py index 589bb8b..6a1856b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ # Version Info # ------------ # The short X.Y version. -version = "0.1" +version = "0.2" # The full version, including alpha/beta/rc tags. -release = "0.1" +release = "0.2" # -- General configuration --------------------------------------------------- # By default, highlight as Python 3. diff --git a/satmad_applications/__init__.py b/satmad_applications/__init__.py index a3aa45e..6afb24f 100644 --- a/satmad_applications/__init__.py +++ b/satmad_applications/__init__.py @@ -3,4 +3,4 @@ ===================== Applications and Examples with the SatMAD library. """ -__version__ = "0.1" +__version__ = "0.2"