Skip to content

Commit

Permalink
Finishing release of v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
altairgomes committed Aug 30, 2021
1 parent 1b8881f commit 43a6409
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 62 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,21 @@ SYSTEM REQUIREMENTS AND INSTALLATION

SORA was developed in Python 3.7 and requires the following packages:

- Astropy (4.0): For astronomical related functions, mainly coordinates and time.
- Astropy (4.3): For astronomical related functions, mainly coordinates and time.

- Astroquery (0.4.1): To query astronomical database as JPL and Vizier.
- Astroquery (0.4.3): To query astronomical database as JPL and Vizier.

- Matplotlib (3.1.1): For easy and beautiful plots.
- Matplotlib (3.4.3): For easy and beautiful plots.

- NumPy (1.18.1): Otimized mathematical functions.
- NumPy (1.21): Otimized mathematical functions.

- SciPy (1.4.1): Otimized functions for mathematics, science, and engineering.
- SciPy (1.7.1): Otimized functions for mathematics, science, and engineering.

- SpiceyPy (3.0.2): SPICE/NAIF functions in python.
- SpiceyPy (4.0.2): SPICE/NAIF functions in python.

- PyERFA (2.0): Python wrapper for the ERFA library based on the SOFA library.

- Cartopy (0.17): Geospatial data processing to produce maps.
- Cartopy (0.19): Geospatial data processing to produce maps.

The user can install SORA and most of its requirements using **pip**, only
Cartopy should be installed from conda afterwards.
Expand Down
57 changes: 4 additions & 53 deletions Releases.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SORA v0.2.1 (unreleased)
SORA v0.2.1 (2021/Aug/30)
========================

New Features
Expand All @@ -9,20 +9,11 @@ sora.body

- Added function "Body.to_log()". [:issue:`65`]

sora.config
^^^^^^^^^^^

sora.ephem
^^^^^^^^^^

sora.extra
^^^^^^^^^^

- Added function "ChiSquare.to_log()". [:issue:`65`]

sora.lightcurve
^^^^^^^^^^^^^^^

sora.observer
^^^^^^^^^^^^^

Expand All @@ -46,48 +37,21 @@ sora.star
- Added function that corrects the Gaia-EDR3 proper motion as suggested by
Cantat-Gaudin and Brandt (2021) [:issue:`65`]

documentation
^^^^^^^^^^^^^

API Changes
-----------

sora.body
^^^^^^^^^^^

sora.config
^^^^^^^^^^^

sora.ephem
^^^^^^^^^^

sora.extra
^^^^^^^^^^

sora.lightcurve
^^^^^^^^^^^^^^^

sora.observer
^^^^^^^^^^^^^

sora.occultation
^^^^^^^^^^^^^^^^

- Occultation.check_velocities() now calculates the normal velocity considering the ellipse
fitted in fit_ellipse replacing the radial velocity. [:issue:`66`]

sora.prediction
^^^^^^^^^^^^^^^

sora.star
^^^^^^^^^^^^^^^

- Added warning for Gaia stars with an high RUWE or Duplicity flag, indicating an possible issue
- Added warning for Gaia stars with a high RUWE or Duplicity flag, indicating a possible issue
with this star's astrometry. [:issue:`65`]

documentation
^^^^^^^^^^^^^

Bug Fixes
---------

Expand All @@ -98,19 +62,14 @@ sora.body

- Fixed wrong albedos in satdb. [:issue:`66`]

sora.config
^^^^^^^^^^^

sora.ephem
^^^^^^^^^^

- Added argument "meta" in "EphemHorizons". [:issue:`65`]
- Added argument "meta" in "EphemHorizons", thus fixing a bug when predicting with
this class. [:issue:`65`]

- Fixed bug when radius is inputted in the ephem classes. [:issue:`67`]

sora.extra
^^^^^^^^^^

sora.lightcurve
^^^^^^^^^^^^^^^

Expand All @@ -119,9 +78,6 @@ sora.lightcurve
- Fixed bug where LightCurve did not read occultation parameters if a flux or file
was not provided. [:issue:`66`]

sora.observer
^^^^^^^^^^^^^

sora.occultation
^^^^^^^^^^^^^^^^

Expand All @@ -144,11 +100,6 @@ sora.prediction
- Fixed bug in the occultation map that did not plot the direction arrow in some
cases when cartopy>=0.18. [:issue:`67`]

sora.star
^^^^^^^^^^^^^^^

documentation
^^^^^^^^^^^^^

SORA v0.2 (2021/Jun/14)
=======================
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
setup(
name='sora-astro',
packages=find_packages(),
version='0.2.1dev',
version='0.2.1',
license='MIT',
description='Stellar Occultation Library',
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion sora/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
from .star import Star
from .occultation import Occultation

__version__ = '0.2.1dev'
__version__ = '0.2.1'

print(f'SORA version: {__version__}')

0 comments on commit 43a6409

Please sign in to comment.