From 70089a4e2965c44a38eab284ace17a0bcf431b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Hannequin?= Date: Tue, 10 Dec 2024 14:37:15 +0100 Subject: [PATCH] v0.6.0 --- CHANGELOG.md | 46 ++++++++++++++++++++++++++++++++++++++++ Gemfile.lock | 2 +- lib/astronoby/version.rb | 2 +- 3 files changed, 48 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e52802..341bc28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,51 @@ # Changelog +## 0.6.0 - 2024-12-10 + +_If you are upgrading: please see [UPGRADING.md]._ + +[UPGRADING.md]: https://github.com/rhannequin/astronoby/blob/main/UPGRADING.md + +### Bug fixes + +* Fix `ObservationEvents` infinite loop in ([#110]) +* Fix observation events times with local time dates in ([#105]) +* Fix `IncompatibleArgumentsError` on Moon's observation events in ([#111]) + +### Features + +* Add `Astronoby::Moon#current_phase_fraction` in ([#115]) +* Add sources and results for comparison in ([#114]) + +### Improvements + +* Bump standard from 1.36.0 to 1.39.2 by @dependabot in ([#95]) +* Bump standard from 1.39.2 to 1.40.0 by @dependabot in ([#96]) +* Bump dependencies in ([#100]) +* Move dependencies to development ones in ([#99]) +* Bump standard from 1.40.0 to 1.41.1 by @dependabot in ([#104]) +* Bump standard from 1.41.1 to 1.42.0 by @dependabot in ([#107]) +* Bump standard from 1.42.0 to 1.42.1 by @dependabot in ([#108]) +* Bump dependencies in ([#116]) +* Add supported Ruby versions in ([#117]) + +**Full Changelog**: https://github.com/rhannequin/astronoby/compare/v0.5.0...v0.6.0 + +[#95]: https://github\.com/rhannequin/astronoby/pull/95 +[#96]: https://github\.com/rhannequin/astronoby/pull/96 +[#99]: https://github\.com/rhannequin/astronoby/pull/99 +[#100]: https://github\.com/rhannequin/astronoby/pull/100 +[#104]: https://github\.com/rhannequin/astronoby/pull/104 +[#105]: https://github\.com/rhannequin/astronoby/pull/105 +[#107]: https://github\.com/rhannequin/astronoby/pull/107 +[#108]: https://github\.com/rhannequin/astronoby/pull/108 +[#110]: https://github\.com/rhannequin/astronoby/pull/110 +[#111]: https://github\.com/rhannequin/astronoby/pull/111 +[#114]: https://github\.com/rhannequin/astronoby/pull/114 +[#115]: https://github\.com/rhannequin/astronoby/pull/115 +[#116]: https://github\.com/rhannequin/astronoby/pull/116 +[#117]: https://github\.com/rhannequin/astronoby/pull/117 + ## 0.5.0 - 2024-06-11 _If you are upgrading: please see [UPGRADING.md]._ diff --git a/Gemfile.lock b/Gemfile.lock index 9f99ed7..fa6933d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - astronoby (0.5.0) + astronoby (0.6.0) matrix (~> 0.4.2) GEM diff --git a/lib/astronoby/version.rb b/lib/astronoby/version.rb index dde1934..ee011e7 100644 --- a/lib/astronoby/version.rb +++ b/lib/astronoby/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Astronoby - VERSION = "0.5.0" + VERSION = "0.6.0" end