Skip to content

Commit

Permalink
release: Bump version to 0.2.0 (#33)
Browse files Browse the repository at this point in the history
## 0.2.0 - 2024-03-24

_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])
* Add geocentric parallax `Astronoby::GeocentricParallax` ([#31])
* Ability to calculate equinoxes and solstices times ([#32])
* Round rising and setting times to the second ([#38])
* Provide sunrise and sunset times ([#35])
* Provide sunrise and sunset azimuths ([#39])
* Ability to calculate the equation of time ([#40])

### Breaking changes

* **breaking:** Accurate setting and rising times for punctual bodies ([#29])
* **breaking:** Drop `Astronoby::Util::Time` in favor of
  `Astronoby::GreenwichSiderealTime` and `Astonoby::LocalSiderealTime` ([#36])

### 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.35.1 ([#27], [#37])
* Bump rspec from 3.12.0 to 3.13.0 ([#28])

[#21]: #21
[#24]: #24
[#25]: #25
[#26]: #26
[#27]: #27
[#28]: #28
[#29]: #29
[#30]: #30
[#31]: #31
[#32]: #32
[#35]: #35
[#36]: #36
[#37]: #37
[#38]: #38
[#39]: #39
[#40]: #40
  • Loading branch information
rhannequin committed Mar 24, 2024
1 parent 5e3f122 commit 8de3de2
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 2 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# Changelog

## 0.2.0 - 2024-03-24

_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])
* Add geocentric parallax `Astronoby::GeocentricParallax` ([#31])
* Ability to calculate equinoxes and solstices times ([#32])
* Round rising and setting times to the second ([#38])
* Provide sunrise and sunset times ([#35])
* Provide sunrise and sunset azimuths ([#39])
* Ability to calculate the equation of time ([#40])

### Breaking changes

* **breaking:** Accurate setting and rising times for punctual bodies ([#29])
* **breaking:** Drop `Astronoby::Util::Time` in favor of
`Astronoby::GreenwichSiderealTime` and `Astonoby::LocalSiderealTime` ([#36])

### 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.35.1 ([#27], [#37])
* Bump rspec from 3.12.0 to 3.13.0 ([#28])

[#21]: https://github.com/rhannequin/astronoby/pull/21
[#24]: https://github.com/rhannequin/astronoby/pull/24
[#25]: https://github.com/rhannequin/astronoby/pull/25
[#26]: https://github.com/rhannequin/astronoby/pull/26
[#27]: https://github.com/rhannequin/astronoby/pull/27
[#28]: https://github.com/rhannequin/astronoby/pull/28
[#29]: https://github.com/rhannequin/astronoby/pull/29
[#30]: https://github.com/rhannequin/astronoby/pull/30
[#31]: https://github.com/rhannequin/astronoby/pull/31
[#32]: https://github.com/rhannequin/astronoby/pull/32
[#35]: https://github.com/rhannequin/astronoby/pull/35
[#36]: https://github.com/rhannequin/astronoby/pull/36
[#37]: https://github.com/rhannequin/astronoby/pull/37
[#28]: https://github.com/rhannequin/astronoby/pull/38
[#39]: https://github.com/rhannequin/astronoby/pull/39
[#40]: https://github.com/rhannequin/astronoby/pull/40

## 0.1.0 - 2024-02-28

### Features
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
astronoby (0.1.0)
astronoby (0.2.0)
matrix (~> 0.4.2)
rake (~> 13.0)
rspec (~> 3.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/astronoby/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Astronoby
VERSION = "0.1.0"
VERSION = "0.2.0"
end

0 comments on commit 8de3de2

Please sign in to comment.