diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 4a1f3af..6a4030a 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -11,7 +11,7 @@ "name": "asta", "source": "./plugins/asta", "description": "Paper search, metadata, document management, and theory generation for scientific research", - "version": "0.19.0", + "version": "0.19.1", "author": { "name": "Ai2 Asta Team" }, @@ -29,7 +29,7 @@ "name": "asta-preview", "source": "./plugins/asta-preview", "description": "Paper search, metadata, document management, literature reports, experiments, and theory generation for scientific research", - "version": "0.19.0", + "version": "0.19.1", "author": { "name": "Ai2 Asta Team" }, diff --git a/plugins/asta-preview/hooks/sync-cli-version.sh b/plugins/asta-preview/hooks/sync-cli-version.sh index d182c2f..6aed87d 100755 --- a/plugins/asta-preview/hooks/sync-cli-version.sh +++ b/plugins/asta-preview/hooks/sync-cli-version.sh @@ -1,7 +1,7 @@ #!/bin/bash # Check if asta CLI version matches the plugin version and auto-install/update if needed -PLUGIN_VERSION=0.19.0 +PLUGIN_VERSION=0.19.1 INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION" # Check if asta is installed diff --git a/plugins/asta-preview/skills/asta-cli/SKILL.md b/plugins/asta-preview/skills/asta-cli/SKILL.md index 74b3b17..1b8da8e 100644 --- a/plugins/asta-preview/skills/asta-cli/SKILL.md +++ b/plugins/asta-preview/skills/asta-cli/SKILL.md @@ -18,7 +18,7 @@ Installs the `asta` CLI for agents that don't install it automatically via a plu **Prerequisites:** Python 3.11+ and [uv](https://docs.astral.sh/uv/). ```bash -PLUGIN_VERSION=0.19.0 +PLUGIN_VERSION=0.19.1 INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION" if ! command -v asta &> /dev/null; then diff --git a/plugins/asta/hooks/sync-cli-version.sh b/plugins/asta/hooks/sync-cli-version.sh index d182c2f..6aed87d 100755 --- a/plugins/asta/hooks/sync-cli-version.sh +++ b/plugins/asta/hooks/sync-cli-version.sh @@ -1,7 +1,7 @@ #!/bin/bash # Check if asta CLI version matches the plugin version and auto-install/update if needed -PLUGIN_VERSION=0.19.0 +PLUGIN_VERSION=0.19.1 INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION" # Check if asta is installed diff --git a/plugins/asta/skills/asta-cli/SKILL.md b/plugins/asta/skills/asta-cli/SKILL.md index 74b3b17..1b8da8e 100644 --- a/plugins/asta/skills/asta-cli/SKILL.md +++ b/plugins/asta/skills/asta-cli/SKILL.md @@ -18,7 +18,7 @@ Installs the `asta` CLI for agents that don't install it automatically via a plu **Prerequisites:** Python 3.11+ and [uv](https://docs.astral.sh/uv/). ```bash -PLUGIN_VERSION=0.19.0 +PLUGIN_VERSION=0.19.1 INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION" if ! command -v asta &> /dev/null; then diff --git a/pyproject.toml b/pyproject.toml index ec44659..ecc7f72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "asta" -version = "0.19.0" +version = "0.19.1" description = "Asta CLI for scientific literature review" readme = "README.md" requires-python = ">=3.11" diff --git a/src/asta/__init__.py b/src/asta/__init__.py index a6976e2..c81e2bf 100644 --- a/src/asta/__init__.py +++ b/src/asta/__init__.py @@ -1,3 +1,3 @@ """Asta - Science literature research tools""" -__version__ = "0.19.0" +__version__ = "0.19.1" diff --git a/src/asta/utils/asta.conf b/src/asta/utils/asta.conf index 84c3bc6..ff0ef85 100644 --- a/src/asta/utils/asta.conf +++ b/src/asta/utils/asta.conf @@ -83,7 +83,7 @@ passthrough { tool_name = "asta-documents" install_type = "pypi" install_source = "asta-resource-repository" - minimum_version = "0.3.1" + minimum_version = "0.4.0" command_name = "documents" docstring = "Manage a local library of documents known to Asta" } diff --git a/tests/test_cli.py b/tests/test_cli.py index fee0509..da1aa52 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -437,7 +437,6 @@ def test_documents_config(self): assert config["tool_name"] == "asta-documents" assert config["install_type"] == "pypi" assert config["install_source"] == "asta-resource-repository" - assert config["minimum_version"] == "0.3.1" assert validate_semver(config["minimum_version"]) assert config["command_name"] == "documents" diff --git a/uv.lock b/uv.lock index 8400b9c..8c09eae 100644 --- a/uv.lock +++ b/uv.lock @@ -62,7 +62,7 @@ wheels = [ [[package]] name = "asta" -version = "0.19.0" +version = "0.19.1" source = { editable = "." } dependencies = [ { name = "asta-agent", extra = ["a2a-client"] },