Skip to content

Commit 0843b21

Browse files
committed
deps: bump ver and update changelog [skip ci]
1 parent 3bdaad6 commit 0843b21

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

changelog.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ changelog:
119119
changes:
120120
- add: Add an official project documentation in https://python-weather.readthedocs.io/en/latest/.
121121
- version: 2.0.0
122-
release-date: March 2024
122+
release-date: 18 March 2024
123123
changes:
124124
- rem: Rename the main forecast's class name from ``Weather`` to :class:`Forecast`.
125125
- rem: Merge ``CurrentForecast`` class' properties with :class:`Forecast`'s. Therefore the ``current`` property is removed.
@@ -131,7 +131,7 @@ changelog:
131131
- rem: Rename ``CurrentForecast.date`` to ``Forecast.datetime``.
132132
- rem: Rename ``DailyForecast.hourly`` to ``DailyForecast.hourly_forecasts``.
133133
- rem: Rename ``Ultraviolet`` to :class:`UltraViolet`.
134-
- add: ``HourlyForecast.heat_index`` now returns a convenience enum called :class:`HeatIndex`.
134+
- add: '``HourlyForecast.heat_index`` now returns a convenience enum called :class:`HeatIndex`.'
135135
- rem: Merge ``Astronomy`` class' properties with :class:`DailyForecast`.
136136
- rem: Rename ``Astronomy.sun_rise`` to ``DailyForecast.sunrise``.
137137
- rem: Rename ``Astronomy.sun_set`` to ``DailyForecast.sunset``.

docs/changelog.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Changelog
8383
+---------+------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
8484
| 1.1.2 | 25 February 2024 | - 🟩 Add an official project documentation in https://python-weather.readthedocs.io/en/latest/. |
8585
+---------+------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
86-
| 2.0.0 | March 2024 | - 🟥 Rename the main forecast's class name from ``Weather`` to :class:`Forecast`. |
86+
| 2.0.0 | 18 March 2024 | - 🟥 Rename the main forecast's class name from ``Weather`` to :class:`Forecast`. |
8787
| | | - 🟥 Merge ``CurrentForecast`` class' properties with :class:`Forecast`'s. Therefore the ``current`` property is removed. |
8888
| | | - 🟥 Merge ``Area`` class' properties with :class:`Forecast`. |
8989
| | | - 🟥 Rename ``Weather.forecasts`` to ``Forecast.daily_forecasts``. |
@@ -92,6 +92,8 @@ Changelog
9292
| | | - 🟥 Rename ``CurrentForecast.chances_of_remdry`` to ``Forecast.chances_of_remaining_dry``. |
9393
| | | - 🟥 Rename ``CurrentForecast.date`` to ``Forecast.datetime``. |
9494
| | | - 🟥 Rename ``DailyForecast.hourly`` to ``DailyForecast.hourly_forecasts``. |
95+
| | | - 🟥 Rename ``Ultraviolet`` to :class:`UltraViolet`. |
96+
| | | - 🟩 ``HourlyForecast.heat_index`` now returns a convenience enum called :class:`HeatIndex`. |
9597
| | | - 🟥 Merge ``Astronomy`` class' properties with :class:`DailyForecast`. |
9698
| | | - 🟥 Rename ``Astronomy.sun_rise`` to ``DailyForecast.sunrise``. |
9799
| | | - 🟥 Rename ``Astronomy.sun_set`` to ``DailyForecast.sunset``. |

python_weather/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .client import Client
88
from .errors import Error
99

10-
__version__ = '1.0.3'
10+
__version__ = '2.0.0'
1111
__all__ = (
1212
'METRIC', 'IMPERIAL', 'Client', 'Error', 'HeatIndex', 'Kind', 'Locale',
1313
'Phase', 'UltraViolet', 'WindDirection'

0 commit comments

Comments
 (0)