From b77fc9f898eefbbaff8defdde8651206a891565f Mon Sep 17 00:00:00 2001 From: ZeroWave022 <36341766+ZeroWave022@users.noreply.github.com> Date: Fri, 13 Oct 2023 22:16:50 +0200 Subject: [PATCH] build: Bump version --- pyproject.toml | 4 ++-- yr_weather/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9af1362..81f4ae6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,11 +8,11 @@ dynamic = ["version"] authors = [ { name = "ZeroWave022" } ] -description = "Retrieve weather data from Yr (by the Norwegian Meteorogical Institute) easily." +description = "Retrieve weather data from Norwegian Meteorological Institute's APIs easily." readme = "README.md" requires-python = ">=3.8" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/yr_weather/__init__.py b/yr_weather/__init__.py index 2366a4a..5eb4dbf 100644 --- a/yr_weather/__init__.py +++ b/yr_weather/__init__.py @@ -11,5 +11,5 @@ from .sunrise import Sunrise from .geosatellite import Geosatellite -__version__ = "0.3.0" +__version__ = "0.4.0" __author__ = "ZeroWave022"