diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index 78f70b8..ab96066 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -11,6 +11,7 @@ on: - 'docs/source/**' - 'assets/**' - '.github/workflows/doc-build.yml' + - 'pyproject.toml' jobs: build: diff --git a/pyproject.toml b/pyproject.toml index 8120416..57eaa7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "smolagents" -version = "1.1.0.dev0" +version = "1.2.0.dev0" description = "🤗 smolagents: a barebones library for agents. Agents write python code to call tools or orchestrate other agents." authors = [ { name="Aymeric Roucher", email="aymeric@hf.co" }, { name="Thomas Wolf"}, diff --git a/src/smolagents/__init__.py b/src/smolagents/__init__.py index 9243205..bccbf47 100644 --- a/src/smolagents/__init__.py +++ b/src/smolagents/__init__.py @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.1.0.dev0" +__version__ = "1.2.0.dev0" from typing import TYPE_CHECKING