From 87c640f6aca9a8769dad053c61e295a1470b17a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Hannequin?= Date: Fri, 8 Mar 2024 10:40:46 +0100 Subject: [PATCH] release: Bump version to 0.2.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ lib/astronoby/version.rb | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91c6fff..aedfc5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 0.2.0 - 2024-xx-xx + +_If you are upgrading: please see [`UPGRADING.md`]._ + +[`UPGRADING.md`]: https://github.com/rhannequin/astronoby/blob/main/UPGRADING.md + +### Features + +* Angle comparison (#21) +* Add `#distance` and `#angular_size` to `Astronoby::Sun` (#30) + +### Breaking changes + +* **breaking:** Accurate setting and rising times for punctual bodies (#29) + +### Improvements + +* Add Dependabot for Bundler and GitHub Actions (#24) +* Add bundler-audit GitHub Action (#25) +* Bump actions/checkout from 3 to 4 (#26) +* Bump standard from 1.29.0 to 1.34.0 (#27) +* Bump rspec from 3.12.0 to 3.13.0 (#28) + ## 0.1.0 - 2024-02-28 ### Features diff --git a/lib/astronoby/version.rb b/lib/astronoby/version.rb index 674b222..cd51cd8 100644 --- a/lib/astronoby/version.rb +++ b/lib/astronoby/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Astronoby - VERSION = "0.1.0" + VERSION = "0.2.0" end