bump to v5.23.0 - #388
Conversation
There was a problem hiding this comment.
Greptile Summary
This PR performs a straightforward version bump for the WorkOS Ruby gem, updating the version from 5.22.0 to 5.23.0 in the lib/workos/version.rb file. This change follows standard Ruby gem versioning practices and is necessary to release new features that were added in issue #381, which implemented external_id support for user and organization functionality.
The version bump follows semantic versioning conventions by incrementing the minor version number (5.22.0 → 5.23.0), indicating that new features have been added without breaking existing functionality. This allows the gem to be published to RubyGems with the new capabilities while maintaining backward compatibility for existing users.
This type of version update is a routine part of the gem release process and integrates with the existing CI/CD workflows defined in .github/workflows/release.yml to automate the publishing process to RubyGems.
Confidence score: 5/5
• This is an extremely safe change that only updates a version string and poses no risk to production functionality
• The change is a standard version bump following semantic versioning practices with no code logic modifications
• No files require additional attention as this is a single-line version constant update
1 file reviewed, no comments
Description
Bump version due to changes in #381