Skip to content

Commit

Permalink
fix git add and commit version
Browse files Browse the repository at this point in the history
  • Loading branch information
Eschults committed Jan 30, 2024
1 parent ebfd6f4 commit 2b07681
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ file_lines = File.open(gem_version_path, "r").readlines
file_lines[3] = " VERSION = \"#{version}\"\n"
File.open(gem_version_path, "wb") {|file| file.write(file_lines.join) }
puts "Commit changes on GitHub"
system "git add ../lib/edusign/version.rb"
system "git add lib/edusign/version.rb"
system "git commit -m 'Commit v#{version}'"
puts "Push to master"
system "git push origin master"
Expand Down
2 changes: 1 addition & 1 deletion lib/edusign/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Edusign
VERSION = "0.2.1"
VERSION = "1.0.0"
end

0 comments on commit 2b07681

Please sign in to comment.