---
* Introduced the ``Timescale`` object with methods ``utc()``, ``tai()``,
``tt()``, and ``tdb()`` for building time objects, along with a
``load.timescale()`` method for building a new ``Timescale``. The
load method downloads ∆T and leap second data from official data
sources and makes sure the files are kept up to date. This replaces
all former techniques for building and specifying dates and times.
* Renamed ``JulianDate`` to ``Time`` and switched from ``jd`` to ``t``
as the typical variable used for time in the documentation.
* Deprecated timescale keyword arguments like ``utc=(…)`` for both the
``Time`` constructor and also for all methods that take time as
an argument, including ``Body.at()`` and ``Topos.at()``.
* Users who want to specify a target directory when downloading a file
will now create their own loader object, instead of having to specify
a special keyword argument for every download::
load = api.Loader('~/ephemeris-files')
load('de421.bsp')