Update copyright year and project version#6454
Conversation
- Fixes version in lib
|
Important Review skippedToo many files! 149 files out of 299 files are above the max files limit of 150. You can disable this status message by setting the 📝 WalkthroughWalkthroughThe project version is bumped from 6.0.2 to 6.0.4 in the CMake build configuration. Copyright years are updated from 2025 to 2026 across source, header, and test files. Test expectations for the patch version are updated from 2 to 4 to reflect the new version. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
test/unit/utVersion.cpp (1)
46-53: Test will fail: searching for outdated year "2025" in legal string.The
LEGAL_INFORMATIONstring inVersion.cppwas updated to"(c) 2006-2026", but this test still searches for"2025". The test will fail because"2025"is no longer present in the legal string.🐛 Proposed fix
TEST_F( utVersion, aiGetLegalStringTest ) { const char *lv = aiGetLegalString(); EXPECT_NE( lv, nullptr ); std::string text( lv ); - size_t pos = text.find(std::string("2025")); + size_t pos = text.find(std::string("2026")); EXPECT_NE(pos, std::string::npos); }
|



Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.