Skip to content

Releases: zombyacoff/faceit-python

v0.1.3

31 May 18:43
Compare
Choose a tag to compare

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

31 May 18:11
e58ba08
Compare
Choose a tag to compare

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

22 Apr 19:26
Compare
Choose a tag to compare

What's Changed

  • Added: New subresources for the Data resource — rankings and teams.
  • Added: The max_items parameter to iterators and all subresource all_* 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.