From ca1756c1ba31d8b6fe415b949f8c98fc2d9e7ba0 Mon Sep 17 00:00:00 2001 From: Hadi Dbouk <19314956+hadiidbouk@users.noreply.github.com> Date: Tue, 9 Jul 2024 00:00:48 +0300 Subject: [PATCH] Fix Rakefile version --- Rakefile | 2 +- lib/autosparkle/metadata.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 4d7284e..3b8c64b 100644 --- a/Rakefile +++ b/Rakefile @@ -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 diff --git a/lib/autosparkle/metadata.rb b/lib/autosparkle/metadata.rb index 3990a1c..eefa2d4 100644 --- a/lib/autosparkle/metadata.rb +++ b/lib/autosparkle/metadata.rb @@ -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