Skip to content

Comments

update urls and release#22

Merged
AymenFJA merged 1 commit intomainfrom
release/v0.1.2
Feb 17, 2026
Merged

update urls and release#22
AymenFJA merged 1 commit intomainfrom
release/v0.1.2

Conversation

@AymenFJA
Copy link
Contributor

No description provided.

@AymenFJA AymenFJA self-assigned this Feb 17, 2026
@gemini-code-assist
Copy link

Summary of Changes

Hello @AymenFJA, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request primarily focuses on updating the project's metadata to reflect a new release version and a change in the project's official hosting and contact URLs. These changes ensure that the package information is current and points to the correct resources.

Highlights

  • Version Update: The project version has been incremented from 0.1.1 to 0.1.2 in both pyproject.toml and src/rhapsody/__init__.py.
  • URL Migration: The project's official URLs for Homepage, Repository, and Issues have been updated to reflect a migration from stride-research to radical-cybertools organization, with the Homepage now pointing to a github.io domain.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • pyproject.toml
    • Updated project version from 0.1.1 to 0.1.2
    • Migrated Homepage URL from https://github.com/stride-research/rhapsody to https://radical-cybertools.github.io/rhapsody/landing.html
    • Migrated Repository URL from https://github.com/stride-research/rhapsody to https://github.com/radical-cybertools/rhapsody
    • Migrated Issues URL from https://github.com/stride-research/rhapsody/issues to https://github.com/radical-cybertools/rhapsody/issues
  • src/rhapsody/init.py
    • Updated __version__ string from 0.1.1 to 0.1.2
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates the package version to 0.1.2 and changes the project URLs to reflect a move to a new GitHub organization. The changes are consistent across the project. I've added one suggestion to improve version management by using a single source of truth, which will make future releases less error-prone.

from .logger import enable_logging

__version__ = "0.1.1"
__version__ = "0.1.2"

Choose a reason for hiding this comment

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

medium

To improve maintainability and avoid potential mismatches, it's recommended to have a single source of truth for your package's version. Since the version is defined in pyproject.toml, you can read it dynamically here instead of hardcoding it. This prevents scenarios where the version might be updated in one file but not the other during a release.

You can achieve this using importlib.metadata (available in Python 3.8+, and your project requires >=3.9):

# Add this import at the top of the file
from importlib import metadata

# ...

# Replace the hardcoded version with this
try:
    __version__ = metadata.version("rhapsody-py")
except metadata.PackageNotFoundError:
    # The package is not installed, which can happen in development.
    __version__ = "0.1.2"  # Fallback version

This change will make your version management more robust.

@AymenFJA AymenFJA merged commit 137b4db into main Feb 17, 2026
7 checks passed
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.

1 participant