Skip to content

Commit 34118a1

Browse files
Merge pull request #28 from 0xPlaygrounds/changeset-release/main
Version Packages
2 parents b96eeeb + b05160c commit 34118a1

7 files changed

Lines changed: 11 additions & 10 deletions

File tree

.changeset/hermes-pypi-only.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/hermes-ryzome/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @ryzome-ai/hermes-ryzome
22

3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- b2c6167: `@ryzome-ai/hermes-ryzome` is no longer published to npm. The Hermes plugin ships as a PyPI-only Python package (`hermes-ryzome-plugin`) whose wheel bundles the compiled Node runner (`ryzome_hermes_plugin/_runner.js`). The `npx -y @ryzome-ai/hermes-ryzome@<ver>` fallback and the `ryzome-hermes-runner` PATH lookup have been removed from `runtime.py`; the runner is now resolved from the bundled wheel asset, a local `dist/runner.js` dev build, or the `RYZOME_HERMES_RUNNER` env override.
8+
39
## 0.1.2
410

511
### Patch Changes

packages/hermes-ryzome/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ryzome-ai/hermes-ryzome",
3-
"version": "0.1.2",
3+
"version": "1.0.0",
44
"private": true,
55
"description": "Ryzome Hermes plugin runner and Python plugin assets",
66
"license": "MIT",

packages/hermes-ryzome/plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ryzome
2-
version: 0.1.2
2+
version: 1.0.0
33
description: Ryzome canvas and document tools for Hermes Agent
44
author: 0xPlaygrounds
55
provides_tools:

packages/hermes-ryzome/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hermes-ryzome-plugin"
7-
version = "0.1.2"
7+
version = "1.0.0"
88
description = "Ryzome canvas and document tools for Hermes Agent"
99
readme = { text = "Ryzome Hermes plugin for canvas and document tools.", content-type = "text/plain" }
1010
requires-python = ">=3.10"

packages/hermes-ryzome/ryzome_hermes_plugin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .schemas import TOOL_SCHEMAS
88
from .tools import create_tool_handler
99

10-
__version__ = "0.1.2"
10+
__version__ = "1.0.0"
1111

1212
LOGGER = logging.getLogger(__name__)
1313

packages/hermes-ryzome/ryzome_hermes_plugin/plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ryzome
2-
version: 0.1.2
2+
version: 1.0.0
33
description: Ryzome canvas and document tools for Hermes Agent
44
author: 0xPlaygrounds
55
provides_tools:

0 commit comments

Comments
 (0)