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
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"metadata": {
"description": "Official botnest integrations for creating and managing Telegram bots.",
"version": "1.1.1"
"version": "1.1.2"
},
"plugins": [
{
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE_SUBMISSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public community Plugin Directory through Claude Console.
- License: Apache-2.0

If the form requests an archive instead of the marketplace repository, build
and upload `dist/botnest-claude-grok-1.1.1.zip`.
and upload `dist/botnest-claude-grok-1.1.2.zip`.

## Listing

Expand Down
2 changes: 1 addition & 1 deletion adapters/alice/runtime.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.1",
"version": "1.1.2",
"base_url": "https://botnest.app",
"mcp_url": "https://botnest.app/mcp",
"request_timeout_seconds": 3.0
Expand Down
2 changes: 1 addition & 1 deletion botnest.plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "botnest",
"version": "1.1.1",
"version": "1.1.2",
"description": "Create, improve, diagnose, brand, and publish production-ready Telegram bots with botnest.",
"author": {
"name": "botnest",
Expand Down
2 changes: 1 addition & 1 deletion platforms/claude-grok/botnest/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "botnest",
"displayName": "BotNest — Telegram Bot Builder",
"version": "1.1.1",
"version": "1.1.2",
"description": "Create, improve, diagnose, brand, and publish production-ready Telegram bots with botnest.",
"author": {
"name": "botnest",
Expand Down
Binary file modified platforms/claude-grok/botnest/assets/icon-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified platforms/claude-grok/botnest/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion plugins/botnest/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "botnest",
"version": "1.1.1",
"version": "1.1.2",
"description": "Create, improve, diagnose, brand, and publish production-ready Telegram bots with botnest.",
"author": {
"name": "botnest",
Expand Down
Binary file modified plugins/botnest/assets/icon-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plugins/botnest/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion plugins/botnest/runtime.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.1",
"version": "1.1.2",
"base_url": "https://botnest.app",
"mcp_url": "https://botnest.app/mcp",
"oauth": {
Expand Down
4 changes: 2 additions & 2 deletions tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ def setUpClass(cls):
def test_bridge_targets_production(self):
self.assertEqual(self.proxy.BASE_URL, "https://botnest.app")
self.assertEqual(self.proxy.MCP_URL, "https://botnest.app/mcp")
self.assertEqual(self.proxy.PLUGIN_VERSION, "1.1.1")
self.assertEqual(self.proxy.USER_AGENT, "BotNest-Plugin/1.1.1")
self.assertEqual(self.proxy.PLUGIN_VERSION, "1.1.2")
self.assertEqual(self.proxy.USER_AGENT, "BotNest-Plugin/1.1.2")

def test_mcp_manifest_uses_the_production_bridge(self):
config = load_json(PLUGIN / ".mcp.json")
Expand Down