Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gemini-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-gemini-code",
"version": "1.2.0",
"version": "1.2.1",
"description": "Complete collection of battle-tested Gemini CLI configurations - agents, skills, hooks, and rules evolved over 10+ months of intensive daily use",
"author": {
"name": "Jamkris",
Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-gemini-code",
"version": "1.2.0",
"version": "1.2.1",
"description": "Complete collection of Gemini CLI configurations adapted from everything-gemini-code - agents, skills, hooks, and rules",
"author": {
"name": "Jamkris",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "everything-gemini-code",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"description": "Battle-tested Gemini CLI configurations",
"author": "Jamkris",
Expand Down
13 changes: 11 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,17 @@ git commit -m "chore: bump version to $VERSION"
echo "Creating tag v$VERSION..."
git tag "v$VERSION"

BRANCH=$(git rev-parse --abbrev-ref HEAD)

echo "Done!"
echo "Next steps:"
echo "1. git push origin main"
echo "1. git push origin $BRANCH"
echo "2. git push origin v$VERSION"
echo "3. Check GitHub Actions for the Release process."
if [ "$BRANCH" != "main" ]; then
echo "3. Create a PR to merge '$BRANCH' into main"
echo " gh pr create --title 'chore: release v$VERSION' --body 'Bump version to $VERSION'"
echo "4. After merge, push the tag: git push origin v$VERSION"
echo "5. Check GitHub Actions for the Release process."
else
echo "3. Check GitHub Actions for the Release process."
fi
Loading