Skip to content

Conversation

@rayrayraykk
Copy link
Member

Bump version to v1.0.2a1

Copilot AI review requested due to automatic review settings December 8, 2025 13:15
@rayrayraykk rayrayraykk added the Version Bump Bump a version label Dec 8, 2025
@AgentScopeTeam AgentScopeTeam merged commit 25d292a into agentscope-ai:main Dec 8, 2025
11 checks passed
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR bumps the version from v1.0.1 to v1.0.2a1, marking an alpha pre-release for the upcoming v1.0.2 version. The changes update version strings across the codebase and add v1.0.1 to the documentation version history.

  • Updated version strings in Python code and package configuration
  • Added v1.0.1 to the list of documented versions in cookbook templates

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.

File Description
src/agentscope_runtime/version.py Updated version string to "v1.0.2a1"
pyproject.toml Updated package version to "1.0.2a1"
cookbook/build.sh Added "v1.0.1" to the list of versions to build in documentation
cookbook/_templates/version-switch.html Added "v1.0.1" to the version switcher dropdown menu

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "v1.0.1"
__version__ = "v1.0.2a1"
Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version string in version.py includes a "v" prefix ("v1.0.2a1"), while pyproject.toml does not ("1.0.2a1"). This inconsistency could cause issues depending on how these version strings are used throughout the codebase.

The standard Python packaging convention (PEP 440) does not include the "v" prefix in version strings. Consider either:

  1. Removing the "v" prefix from version.py to match pyproject.toml (recommended), or
  2. Adding the "v" prefix to pyproject.toml if it's required by your versioning scheme (though this would be non-standard)
Suggested change
__version__ = "v1.0.2a1"
__version__ = "1.0.2a1"

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Version Bump Bump a version

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants