Skip to content

Commit

Permalink
Bumped version to 0.1, added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
egemenimre committed Apr 4, 2021
1 parent 0af2b8c commit bb1a836
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ flight dynamics library.

Current functionality is:

- Loading a list of TLEs from file
- Initialising an orbit with a TLE
- Propagating the orbit analytically via the SGP4 propagator
- Propagating an orbit numerically via the Scipy ODE Solvers (two-body force model) around the Earth or another planet
Expand Down
1 change: 1 addition & 0 deletions docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Current Status

Current functionality is:

- Loading a list of TLEs from file
- Initialising an orbit with a TLE (see :ref:`tle-intro` Section)
- Propagating the orbit analytically via SGP4 propagator (see :ref:`sgp4-intro` Section)
- Propagating the orbit numerically via the Scipy ODE Solvers with two-body force model
Expand Down
19 changes: 15 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,29 @@ The major functionalities under development are:
Latest Version
-----------------

Version 0.0.7 (24 Mar 2021)
Version 0.1 (05 Apr 2021)
^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Added :class:`.GroundLocation` to model the Ground Locations (e.g. groundstations) on any planet.
- Initialised non-Earth-bound propagation
- Modified the dependencies to point to the new `pyERFA` library
- Added :class:`.TleStorage` and :class:`.TleTimeSeries` classes to load and filter multiple TLEs
(see :ref:`tle_storage-intro`)
- Improved units handling of TLEs
- Moved analyses to a dedicated project called SatMAD Applications,
`available at Github <https://github.com/egemenimre/satmad_applications>`_ (for Jupyter notebooks)
and `in plain document format <https://satmad-applications.readthedocs.io/>`_.




Previous Versions
-----------------

Version 0.0.7 (24 Mar 2021)
^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Added :class:`.GroundLocation` to model the Ground Locations (e.g. groundstations) on any planet.
- Initialised non-Earth-bound propagation
- Modified the dependencies to point to the new `pyERFA` library

Version 0.0.6 (10 Nov 2020)
^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
# Version Info
# ------------
# The short X.Y version.
version = "0.0.7"
version = "0.1"
# The full version, including alpha/beta/rc tags.
release = "0.0.7"
release = "0.1"

# -- General configuration ---------------------------------------------------
# By default, highlight as Python 3.
Expand Down
2 changes: 1 addition & 1 deletion satmad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
=========
Satellite Mission Analysis and Design in Python.
"""
__version__ = "0.0.7"
__version__ = "0.1"

0 comments on commit bb1a836

Please sign in to comment.