-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Project version 2.2.5.16 #646
Conversation
WalkthroughThe pull request updates the version number of the Changes
Possibly related PRs
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
🎉 Thank you for your code contribution! To guarantee the change/addition is conformant to the OCF Specification, we would like to ask you to execute OCF Conformance Testing of your change ☝️ when your work is ready to be reviewed. ℹ️ To verify your latest change (19c7de5), label this PR with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (3)
- CMakeLists.txt (1 hunks)
- include/oc_build_info.h (1 hunks)
- port/linux/Makefile (1 hunks)
✅ Files skipped from review due to trivial changes (1)
- CMakeLists.txt
🔇 Additional comments (4)
include/oc_build_info.h (3)
33-33
: LGTM: Version build number incremented correctly.The IOTIVITY_LITE_VERSION_BUILD has been properly incremented from 15 to 16, consistent with the PR objectives for version 2.2.5.16.
40-40
: LGTM: Hexadecimal version number updated correctly.The IOTIVITY_LITE_VERSION hexadecimal representation has been correctly updated from 0x0202050F to 0x02020510, accurately reflecting the new version 2.2.5.16.
41-41
: LGTM: Version string updated correctly and consistent with other representations.The IOTIVITY_LITE_VERSION_STRING has been properly updated from "2.2.5.15" to "2.2.5.16", consistent with the PR objectives and the other version representations in this file.
To ensure consistency across all version representations, let's run the following verification script:
port/linux/Makefile (1)
9-15
: Version number updated correctly.The project version has been incremented from 2.2.5.15 to 2.2.5.16. This change is correctly reflected in both the comment and the
VERSION_BUILD
variable.-# project version: 2.2.5.15 +# project version: 2.2.5.16 VERSION_MAJOR = 2 VERSION_MINOR = 2 VERSION_PATCH = 5 -VERSION_BUILD = 15 +VERSION_BUILD = 16 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH).$(VERSION_BUILD)The
VERSION
variable is correctly constructed using the updated components.
Quality Gate passedIssues Measures |
No description provided.