Skip to content

Update copyright year and project version#6454

Merged
kimkulling merged 7 commits intomasterfrom
bugfix/fix_version
Jan 24, 2026
Merged

Update copyright year and project version#6454
kimkulling merged 7 commits intomasterfrom
bugfix/fix_version

Conversation

@kimkulling
Copy link
Copy Markdown
Member

@kimkulling kimkulling commented Jan 21, 2026

  • Fixes version in lib

Summary by CodeRabbit

  • Chores
    • Updated project version to 6.0.4
    • Updated copyright notices to reflect 2026

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

@kimkulling kimkulling added Bug Global flag to mark a deviation from expected behaviour Build Global flag to mark build relates topics labels Jan 21, 2026
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Jan 21, 2026

Important

Review skipped

Too 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 reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough

Walkthrough

The 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

Cohort / File(s) Change Summary
Version Bump
CMakeLists.txt
Project version updated from 6.0.2 to 6.0.4
Copyright Year Updates
code/Common/Version.cpp, include/assimp/version.h
Copyright year in file headers updated from 2025 to 2026; no functional logic changes
Test Updates
test/unit/utVersion.cpp
Copyright year updated to 2026; patch version test expectation updated from 2U to 4U to align with new version

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

🐰 Hoppy new version, six-point-oh-four,
Copyright renewed, from twenty-twenty-five to more!
Tests now expect that patch is four, not two,
A minor bump march, but we celebrate you! 🎉

🚥 Pre-merge checks | ✅ 2 | ❌ 1
❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title directly matches the primary changes: updating copyright years to 2026 across multiple files and bumping the project version from 6.0.2 to 6.0.4 in CMakeLists.txt.

✏️ 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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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_INFORMATION string in Version.cpp was 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);
 }

@sonarqubecloud
Copy link
Copy Markdown

@kimkulling kimkulling merged commit e0b5234 into master Jan 24, 2026
21 of 22 checks passed
@kimkulling kimkulling deleted the bugfix/fix_version branch January 24, 2026 20:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Bug Global flag to mark a deviation from expected behaviour Build Global flag to mark build relates topics

Projects

Development

Successfully merging this pull request may close these issues.

1 participant