Skip to content

Conversation

@rayrayraykk
Copy link
Member

Bump version to v1.0.1

Copilot AI review requested due to automatic review settings December 8, 2025 13:06
@rayrayraykk rayrayraykk added the Version Bump Bump a version label Dec 8, 2025
@rayrayraykk rayrayraykk merged commit 4faaa19 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.1a2 (alpha release) to v1.0.1 (stable release), marking the transition from a pre-release to a production-ready version.

  • Updated version strings in both the Python module and package configuration
  • Removed the "a2" (alpha 2) pre-release identifier

Reviewed changes

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

File Description
src/agentscope_runtime/version.py Updated __version__ from "v1.0.1a2" to "v1.0.1"
pyproject.toml Updated package version from "1.0.1a2" to "1.0.1"

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

@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "v1.0.1a2"
__version__ = "v1.0.1"
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 includes a "v" prefix ("v1.0.1"), which is inconsistent with the version in pyproject.toml ("1.0.1"). According to PEP 440, version strings should not include a "v" prefix. This can cause issues with version comparisons and package management tools. Consider removing the "v" prefix to make it __version__ = "1.0.1" for consistency and standards compliance.

Suggested change
__version__ = "v1.0.1"
__version__ = "1.0.1"

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