Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [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

[0.3.0]: https://github.com/flightradar24/fr24api-sdk-python/releases/tag/v0.3.0

## [0.2.0] - 2025-09-18

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "fr24sdk"
version = "0.2.0"
version = "0.3.0"
description = "Python SDK for the Flightradar24 API"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion src/fr24sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: MIT
"""Flightradar24 API SDK for Python."""

__version__ = "0.2.0"
__version__ = "0.3.0"

from .client import Client

Expand Down
Loading