Skip to content

Releases: zombyacoff/faceit-python

v0.3.2

Choose a tag to compare

@zombyacoff zombyacoff released this 27 Jun 21:07

Full Changelog: v0.3.1...v0.3.2

v0.3.1

Choose a tag to compare

@zombyacoff zombyacoff released this 30 May 20:45

Full Changelog: v0.3.0...v0.3.1

v0.3.0

Choose a tag to compare

@zombyacoff zombyacoff released this 23 May 22:04

What's Changed

Full Changelog: v0.2.3...v0.3.0

v0.2.3

Choose a tag to compare

@zombyacoff zombyacoff released this 14 May 13:17

Full Changelog: v0.2.2...v0.2.3

v0.2.2

Choose a tag to compare

@zombyacoff zombyacoff released this 10 May 13:57

Full Changelog: v0.2.1...v0.2.2

v0.2.1

Choose a tag to compare

@zombyacoff zombyacoff released this 07 May 07:13

Full Changelog: v0.2.0...v0.2.1

v0.2.0

Choose a tag to compare

@zombyacoff zombyacoff released this 19 Apr 03:53

What's Changed

  • Release v0.2.0: Major API Refactor and Improvements by @zombyacoff in #6

Full Changelog: v0.1.4...v0.2.0

v0.1.4

Choose a tag to compare

@zombyacoff zombyacoff released this 06 Jun 06:45
build: bump version to 0.1.4

v0.1.3

Choose a tag to compare

@zombyacoff zombyacoff released this 31 May 18:43

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.1

Choose a tag to compare

@zombyacoff zombyacoff released this 22 Apr 19:26

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.