Release/0.10.0#77
Conversation
There was a problem hiding this comment.
Code Review
This pull request bumps the project version to 0.10.0, updates the changelog with new features, and simplifies the contribution guidelines in CONTRIBUTING.md. The review feedback suggests improving the contribution instructions by advising contributors to configure an upstream remote during setup and to fetch and rebase from upstream/main instead of origin/main to avoid using outdated forks.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| git fetch origin | ||
| git rebase origin/main |
There was a problem hiding this comment.
Rebasing against origin/main will only rebase against the contributor's own fork, which is often outdated. To get the latest changes from the main repository, contributors should fetch and rebase from the upstream remote.
| git fetch origin | |
| git rebase origin/main | |
| git fetch upstream | |
| git rebase upstream/main |
No description provided.