Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 cookbook/_templates/version-switch.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</style>

<script>
const VERSIONS = ["preview", "v1.0.5", "v0.2.0"];
const VERSIONS = ["preview", "v1.1.0", "v1.0.5.post1", "v0.2.0"];
const VERSION_PATTERN = /^\/(v\d+\.\d+\.\d+)\//;
Comment thread
AgentScopeTeam marked this conversation as resolved.
Outdated
Comment thread
AgentScopeTeam marked this conversation as resolved.
Outdated

function populateVersionMenu() {
Expand Down
2 changes: 1 addition & 1 deletion cookbook/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Multiple versions to build
VERSIONS=("preview" "v1.0.5" "v0.2.0")
VERSIONS=("preview" "v1.1.0" "v1.0.5.post1" "v0.2.0")
OUTPUT_DIR="_build"

# ANSI color codes for better display
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agentscope-runtime"
version = "1.1.0"
version = "1.1.1a1"
description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/agentscope_runtime/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "v1.1.0"
__version__ = "v1.1.1a1"
Loading