From 3cac4895e1e53d335fed24280c692f81daa54bca Mon Sep 17 00:00:00 2001 From: John Yang Date: Wed, 10 Jul 2024 18:16:25 -0400 Subject: [PATCH] Release 2.0.9 --- CHANGELOG.md | 3 +++ swebench/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 957e8fc7..055b6a2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to the PyPI package for SWE-bench ([`swebench`](https://pypi Prior to version 1.1.0, not all deployed versions are listed, as the PyPI package was going through development and testing. The noteworthy versions and the respective changes that were introduced by that version are included. All versions 1.1.0 onwards are fully listed. +## [2.0.9] - 7/10/2024 +* #176 Move inference to swebench.inference sub-package +* #175 Fix link in collect README.md ## [2.0.8] - 7/8/2024 * Add `cutoff_date`, `max_pulls` arguments to collection pipeline diff --git a/swebench/__init__.py b/swebench/__init__.py index e2081e1b..52488db1 100644 --- a/swebench/__init__.py +++ b/swebench/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.8" +__version__ = "2.0.9" from swebench.collect.build_dataset import main as build_dataset from swebench.collect.get_tasks_pipeline import main as get_tasks_pipeline