We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7409718 commit 97b1ba9Copy full SHA for 97b1ba9
bin/release
@@ -60,6 +60,9 @@ fi
60
echo "Updating version..."
61
sed -i "s/VERSION = \"$current_version\"/VERSION = \"$new_version\"/" "$VERSION_FILE"
62
63
+echo "Updating Gemfile.lock..."
64
+bundle install --quiet
65
+
66
echo "Building gem..."
67
gem build "$GEMSPEC"
68
@@ -75,7 +78,7 @@ echo "Cleaning up gem file..."
75
78
rm "$gem_file"
76
79
77
80
echo "Committing version bump..."
-git add "$VERSION_FILE"
81
+git add "$VERSION_FILE" Gemfile.lock
82
git commit -m "Bump version to $new_version"
83
84
echo "Creating GitHub release..."
0 commit comments