diff --git a/CHANGELOG.md b/CHANGELOG.md index 082c023..eec6b6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [0.3.1] - 2026-04-29 +- Addressing dependencies versions (#21) +- Typed flight categories (#38) + +[0.3.1]: https://github.com/flightradar24/fr24api-sdk-python/releases/tag/v0.3.1 + ## [0.3.0] - 2025-11-25 - Addressing adding Enumerate with FR24 Categories to Flight Position methods [#18](https://github.com/Flightradar24/fr24api-sdk-python/issues/18) - Renaming `count()` method to `get_count()` to keep things consistent diff --git a/pyproject.toml b/pyproject.toml index 80dee4a..84f27d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "fr24sdk" -version = "0.3.0" +version = "0.3.1" description = "Python SDK for the Flightradar24 API" readme = "README.md" requires-python = ">=3.9" diff --git a/src/fr24sdk/__init__.py b/src/fr24sdk/__init__.py index e7843a2..6112dd8 100644 --- a/src/fr24sdk/__init__.py +++ b/src/fr24sdk/__init__.py @@ -3,7 +3,7 @@ # SPDX-License-Identifier: MIT """Flightradar24 API SDK for Python.""" -__version__ = "0.3.0" +__version__ = "0.3.1" from .client import Client diff --git a/uv.lock b/uv.lock index 0316aec..adb071f 100644 --- a/uv.lock +++ b/uv.lock @@ -643,7 +643,7 @@ wheels = [ [[package]] name = "fr24sdk" -version = "0.3.0" +version = "0.3.1" source = { editable = "." } dependencies = [ { name = "exceptiongroup", marker = "python_full_version < '3.11'" },