Skip to content

Commit 3ad85ae

Browse files
committed
release: Bump version to 0.2.0
1 parent 09e3762 commit 3ad85ae

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## 0.2.0 - 2024-xx-xx
4+
5+
_If you are upgrading: please see [`UPGRADING.md`]._
6+
7+
[`UPGRADING.md`]: https://github.com/rhannequin/astronoby/blob/main/UPGRADING.md
8+
9+
### Features
10+
11+
* Angle comparison (#21)
12+
* Add `#distance` and `#angular_size` to `Astronoby::Sun` (#30)
13+
* Add geocentric parallax `Astronoby::GeocentricParallax` (#31)
14+
* Ability to calculate equinoxes and solstices times (#32)
15+
* Round rising and setting times to the second (#38)
16+
* Provide sunrise and sunset times (#35)
17+
* Provide sunrise and sunset azimuths (#39)
18+
19+
### Breaking changes
20+
21+
* **breaking:** Accurate setting and rising times for punctual bodies (#29)
22+
* **breaking:** Drop `Astronoby::Util::Time` in favor of
23+
`Astronoby::GreenwichSiderealTime` and `Astonoby::LocalSiderealTime` (#36)
24+
25+
### Improvements
26+
27+
* Add Dependabot for Bundler and GitHub Actions (#24)
28+
* Add bundler-audit GitHub Action (#25)
29+
* Bump actions/checkout from 3 to 4 (#26)
30+
* Bump standard from 1.29.0 to 1.35.1 (#27, #37)
31+
* Bump rspec from 3.12.0 to 3.13.0 (#28)
32+
333
## 0.1.0 - 2024-02-28
434

535
### Features

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
astronoby (0.1.0)
4+
astronoby (0.2.0)
55
matrix (~> 0.4.2)
66
rake (~> 13.0)
77
rspec (~> 3.0)

UPGRADING.md

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ Returns the UTC `Time` of the sunset.
7272

7373
Returns the Sun's azimuth (`Angle`) at sunset.
7474

75+
### `Sun#equation_of_time` method added (#40)
76+
77+
Returns the equation of time in seconds for a given date at noon.
78+
7579
### Added comparison methods to `Angle` (#21)
7680

7781
With the inclusion of `Comparable`, comparison methods such as `#==`, `#<`,

lib/astronoby/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Astronoby
4-
VERSION = "0.1.0"
4+
VERSION = "0.2.0"
55
end

0 commit comments

Comments
 (0)