Conversation
There was a problem hiding this comment.
Greptile Summary
This PR performs a standard version bump from 5.27.0 to 5.28.0 in the WorkOS Python SDK. The change modifies the __version__ variable in workos/__about__.py, which serves as the central version management location for the package. This file is dynamically imported by setup.py during the package build process, making it the authoritative source for version information when distributing to PyPI.
The version bump follows semantic versioning practices, with the minor version increment (5.27.0 → 5.28.0) indicating that new features or enhancements have been added while maintaining backward compatibility. According to the PR description, this release packages changes from PR #473, suggesting this is part of the standard release workflow where previously merged functionality is now being prepared for public distribution.
This type of version management is common in Python packages and integrates seamlessly with the existing build and deployment infrastructure. The change ensures that users installing the package via pip will receive the latest version with the included enhancements.
Confidence score: 5/5
- This PR is safe to merge with minimal risk
- Score reflects a simple, standard version bump with no code logic changes
- No files require special attention
1 file reviewed, no comments
Description
Includes: #473