Skip to content

Bump version 2026.05.8 to 2026.05.9#58

Merged
aylward merged 1 commit into
Project-MONAI:mainfrom
aylward:release/bump-2026.05.9
May 20, 2026
Merged

Bump version 2026.05.8 to 2026.05.9#58
aylward merged 1 commit into
Project-MONAI:mainfrom
aylward:release/bump-2026.05.9

Conversation

@aylward
Copy link
Copy Markdown
Collaborator

@aylward aylward commented May 20, 2026

Summary by CodeRabbit

  • Chores
    • Package version bumped to 2026.05.9

Copilot AI review requested due to automatic review settings May 20, 2026 22:20
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 20, 2026

Walkthrough

This PR updates the physiomotion4d package version from 2026.05.8 to 2026.05.9 across three locations: the project version in pyproject.toml, the bumpver tool configuration in pyproject.toml, and the module-level __version__ constant in src/physiomotion4d/__init__.py. No functional changes, dependencies, or configuration logic are modified.

Changes

Version Bump

Layer / File(s) Summary
Version update to 2026.05.9
pyproject.toml, src/physiomotion4d/__init__.py
Package version bumped from 2026.05.8 to 2026.05.9 in project metadata, bumpver tool configuration, and module declaration.

Possibly related PRs

Poem

🐰 From dot eight to dot nine we leap,
A version bump, simple and neat,
Three places updated with care,
The config and code, all a pair!
Onwards to flight, version so bright! 🚀


🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately and clearly describes the main change: bumping the package version from 2026.05.8 to 2026.05.9 across configuration and source files.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@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: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/physiomotion4d/__init__.py`:
- Line 20: The __version__ module-level constant currently uses double quotes;
update the string literal for __version__ to use single quotes to comply with
repository style (change __version__ = "2026.05.9" to use single quotes around
the version value).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: a99ab170-dca0-4b92-89ba-3bf9069595f4

📥 Commits

Reviewing files that changed from the base of the PR and between 56999cd and 2e34fab.

📒 Files selected for processing (2)
  • pyproject.toml
  • src/physiomotion4d/__init__.py

"""

__version__ = "2026.05.8"
__version__ = "2026.05.9"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Use single quotes for __version__ string.

Line 20 uses double quotes in a Python string literal; repository guidelines require single quotes for strings.

Suggested fix
-__version__ = "2026.05.9"
+__version__ = '2026.05.9'

As per coding guidelines, "**/*.py: Use single quotes for strings; double quotes for docstrings".

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
__version__ = "2026.05.9"
__version__ = '2026.05.9'
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/physiomotion4d/__init__.py` at line 20, The __version__ module-level
constant currently uses double quotes; update the string literal for __version__
to use single quotes to comply with repository style (change __version__ =
"2026.05.9" to use single quotes around the version value).

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Version bump for the physiomotion4d Python package, updating the distribution metadata and runtime __version__ to keep releases consistent.

Changes:

  • Bumped package version from 2026.05.8 to 2026.05.9 in pyproject.toml.
  • Updated runtime __version__ in src/physiomotion4d/__init__.py.
  • Updated tool.bumpver.current_version to match the new release version.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
src/physiomotion4d/__init__.py Updates the package’s runtime __version__ constant to 2026.05.9.
pyproject.toml Updates project version and bumpver configuration to 2026.05.9.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@codecov
Copy link
Copy Markdown

codecov Bot commented May 20, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 30.79%. Comparing base (56999cd) to head (2e34fab).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #58      +/-   ##
==========================================
+ Coverage   30.77%   30.79%   +0.01%     
==========================================
  Files          50       50              
  Lines        6826     6826              
==========================================
+ Hits         2101     2102       +1     
+ Misses       4725     4724       -1     
Flag Coverage Δ
integration-tests 30.67% <100.00%> (?)
unittests 30.77% <100.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@aylward aylward merged commit 1088f39 into Project-MONAI:main May 20, 2026
12 checks passed
@aylward aylward deleted the release/bump-2026.05.9 branch May 20, 2026 22:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants