Skip to content

Commit

Permalink
Fix Rakefile version
Browse files Browse the repository at this point in the history
  • Loading branch information
hadiidbouk committed Jul 8, 2024
1 parent c50a0c4 commit ca1756c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ task :push_version do
system 'git pull origin develop'
system 'git checkout develop'
system 'git add autosparkle.gemspec'
system "git commit -m 'Bump version to #{Autosparkle::VERSION}'"
system "git commit -m 'Bump version to #{AutoSparkle::VERSION}'"
system 'git push origin develop'

# Retreive the last commit hash
Expand Down
2 changes: 1 addition & 1 deletion lib/autosparkle/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module AutoSparkle
NAME = 'autosparkle'
VERSION = '0.0.8'
VERSION = '0.1.0'
SUMMARY = 'Automate macOS app delivery outside the App Store'
DESCRIPTION = 'Autosparkle is a command-line tool that automates the delivery of macOS apps outside the App Store. It is designed to be used in CI/CD pipelines to automate the process of archiving, signing, notarizing, and distributing macOS apps.'
end

0 comments on commit ca1756c

Please sign in to comment.