Releases: zombyacoff/faceit-python
Releases · zombyacoff/faceit-python
v0.1.3
Fixed a critical issue introduced in v0.1.2 where __init__.py
files were missing from the PyPI distribution due to a .gitignore
configuration error.
Important
This caused the package to be incomplete and unusable.
Version v0.1.2 is broken and should not be used.
Please upgrade to this version immediately.
v0.1.2
Caution
This release contains a critical bug: missing __init__.py
files due to a .gitignore
configuration error.
Do not use this version in production.
Please upgrade to the next release as soon as it is available.
v0.1.1
What's Changed
- Added: New subresources for the Data resource —
rankings
andteams
. - Added: The
max_items
parameter to iterators and all subresourceall_*
methods for flexible pagination. - Fixed: The raw page iterator no longer exhausts prematurely due to an incorrect length check (#1).
- Improved: Enum usage and structure; introduced new enums for settings such as
max_concurrent_requests
(now accepts"max"
as a value). - Changed: Main entry points (
Faceit
,AsyncFaceit
) now act as resource aggregators rather than being initialized directly. For example:
with Faceit.data("API_KEY") as data:
player = data.players.get("RachelR")
This change improves usability and lays the groundwork for supporting additional resources in the future.
- Miscellaneous: General refactoring and minor improvements to the project structure.