View Source Changelog
Astro version 1.0.0
This is the changelog for Astro version 0.11.0 released on December 29th, 2022. For older changelogs please consult the release tag on GitHub
Enhancements
Release 1.0. This library was started four years ago and the public API has been stable for at least three of those years.
Adds
Astro.sun_azimuth_altitude/2. Thanks to @kimlai for the suggestion. Closes #3.
Astro version 0.10.0
This is the changelog for Astro version 0.10.0 released on November 7th, 2022. For older changelogs please consult the release tag on GitHub
Enhancements
- Adds
Astro.Math.floor/1andAstro.Math.ceil/1which are needed to supportTempo.
Astro version 0.9.2
This is the changelog for Astro version 0.9.2 released on September 1st, 2022. For older changelogs please consult the release tag on GitHub
Bug Fixes
- Update
:tz_worldto "~> 1.0" which will also remove Elixir 1.14 warnings
Astro version 0.9.1
This is the changelog for Astro version 0.9.1 released on October 23rd, 2021. For older changelogs please consult the release tag on GitHub
Bug Fixes
- Ensure that
gregorian_secondsis an integer before passing it toTzdata.periods_for_time/3. Thanks to @dvic for the report. Fixes #2.
Astro version 0.9.0
This is the changelog for Astro version 0.9.0 released on October 8th, 2021. For older changelogs please consult the release tag on GitHub
Please note that Elixir 1.11 or later is required.
Enhancements
- Adds
Astro.lunar_phase_emoji/1to produce a single grapheme string representing the image of the moon phase for a given lunar angle.
Astro version 0.8.0
This is the changelog for Astro version 0.8.0 released on October 3rd, 2021. For older changelogs please consult the release tag on GitHub
Please note that Elixir 1.11 or later is required.
Enhancements
Convert some identity functions to macros which improves runtime performance
Add additional specs and docs to
Astro.Mathmodule
Astro version 0.7.0
This is the changelog for Astro version 0.7.0 released on September 10th, 2021. For older changelogs please consult the release tag on GitHub
Please note that Elixir 1.11 or later is required.
Bug Fixes
- Revert
Astroback to a pure library application. The supervisor forTzWorldstill needs to be started. This fix brings the code back into line with the README. Thanks to @dvic for the report. Closes #1.
Astro version 0.6.0
This is the changelog for Astro version 0.6.0 released on September 5th, 2021. For older changelogs please consult the release tag on GitHub
Please note that Elixir 1.11 or later is required.
Bug Fixes
Fix
Astro.Math.atan_r/2Fix ephemeris calculation
Breaking changes
- Change
Time.date_time_{from, to}_iso_days/1toTime.date_time_{from, to}_moment/1
Enhancements
Remove dependency on
ex_cldr_calendarandjason
Astro version 0.5.0
This is the changelog for Astro version 0.5.0 released on August 26th, 2021. For older changelogs please consult the release tag on GitHub
Please note that Elixir 1.11 or later is required.
Bug Fixes
Updates documentation to be clear about installation and setup requirements for
tz_worldFixes test data for São Paulo now that it no longer uses DST
Ensure
:astrois started in test mode
Enhancements
This primary focus of this release is to add lunar calculations for moon phase.
Astro version 0.4.0
This is the changelog for Astro version 0.4.0 released on February 16th, 2020. For older changelogs please consult the release tag on GitHub
Breaking Change
- When no timezone is found the return is changed from
{:error, :timezone_not_found}to{:error, :time_zone_not_found}to be consistent with Elixir andTzData.
Astro version 0.3.0
This is the changelog for Astro version 0.3.0 released on December 9th, 2019. For older changelogs please consult the release tag on GitHub
Change in behaviour
- Seconds are no longer truncated to zero when calculating datetimes and durations
Enhancements
Add
Astro.solar_noon/2to return the true solar noon for a location and dateAdd
Astro.hours_of_daylight/2to return hours, minutes and seconds as aTime.t()representing the number of daylight hours for a give location and dateAdd
Astro.sun_apparent_longitude/1to return the apparent solar longitude on a given date. The result, a number of degrees between 0 and 360, can be used to determine the seasons.
Astro version 0.2.0
This is the changelog for Astro version 0.2.0 released on December 6th, 2019. For older changelogs please consult the release tag on GitHub
Enhancements
Add
Astro.equinox/2andAstro.solstice/2to calculate solstices and equinoxes for a year. From these can be derived the seasons.
Astro version 0.1.0
This is the changelog for Astro version 0.1.0 released on December 5th, 2019. For older changelogs please consult the release tag on GitHub
Enhancements
- Initial release includes
Astro.sunrise/3andAstro.sunset/3. See the readme for further roadmap details.