View all platform updates and version history
Leaderboards now fold repeat submissions with the same score. This will allow to surface more submissions.

New version of Python SDK - 1.1.4. You can start anonymous tasks without spinning up a session:
import textwrap
from erc3 import ERC3
core = ERC3()
task = core.start_new_task("erc3-test", "name_a_project")
# do something with the task
client = core.get_erc_client(task)
print(client.who_am_i().wiki_sha1)
done = core.complete_task(task)
if done.eval:
logs = textwrap.indent(done.eval.logs, " ")
print(f"Score: {done.eval.score}\n{logs}")
/projects/search API to return proper next offset in ERC3-DEV/TEST benchmarks. Thanks to @nick for the bug report!@AigizK for the feedback.add_time_entry_lead_v2 and add_time_entry_lead_v3 (no longer expect events), nordic_followup_customers (more precise task requirement) Thanks to @xsirni for reporting thesebroken_system test sometimes returning answers. Thanks to @mr_pro for reporting it.