Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta-preview/hooks/sync-cli-version.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta-preview/skills/asta-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta/hooks/sync-cli-version.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta/skills/asta-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/asta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Asta - Science literature research tools"""

__version__ = "0.19.0"
__version__ = "0.19.1"
2 changes: 1 addition & 1 deletion src/asta/utils/asta.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
1 change: 0 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading