Skip to content

Commit 3041b77

Browse files
committed
Release v0.3.0
1 parent b5ce7eb commit 3041b77

4 files changed

Lines changed: 908 additions & 902 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
### Security
2121

22+
## [0.3.0] - 2025-11-25
23+
- Addressing adding Enumerate with FR24 Categories to Flight Position methods [#18](https://github.com/Flightradar24/fr24api-sdk-python/issues/18)
24+
- Renaming `count()` method to `get_count()` to keep things consistant
25+
26+
[0.3.0]: https://github.com/flightradar24/fr24api-sdk-python/releases/tag/v0.3.0
27+
2228
## [0.2.0] - 2025-09-18
2329

2430
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "fr24sdk"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Python SDK for the Flightradar24 API"
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/fr24sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44
"""Flightradar24 API SDK for Python."""
55

6-
__version__ = "0.2.0"
6+
__version__ = "0.3.0"
77

88
from .client import Client
99

0 commit comments

Comments
 (0)