diff --git a/CHANGELOG.md b/CHANGELOG.md index 1372890..582045a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +# Release 1.1.7 + +**Date**: `2024-04-27` + +## What Changed + +- Added daily sunrise and sunset values to forecast +- Added `to_json` function to alle data tables + # Release 1.1.4 **Date**: `2024-03-06` diff --git a/pymeteobridgesql/__init__.py b/pymeteobridgesql/__init__.py index 4d74a2b..be7e929 100644 --- a/pymeteobridgesql/__init__.py +++ b/pymeteobridgesql/__init__.py @@ -7,6 +7,6 @@ from .data import ForecastDaily, ForecastHourly, RealtimeData, StationData __title__ = "pymeteobridgesql" -__version__ = "1.1.6" +__version__ = "1.1.7" __author__ = "briis" __license__ = "MIT" diff --git a/setup.py b/setup.py index 24d2816..320acbe 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pymeteobridgesql", - version="1.1.6", + version="1.1.7", author="briis", author_email="bjarne@briis.com", description="Gets weather data from a MySQL table",