Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BramDC3 committed Oct 8, 2024
1 parent 5f4ec00 commit 7258f0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ platform :android do
desc "Build Android debug"
lane :build_debug do
Dir.chdir("..") do
sh("fvm flutter build apk --debug")
sh("fvm flutter build apk --debug --dart-define-from-file=.env")
end
end

desc "Build Android release"
lane :build_release do
Dir.chdir("..") do
sh("fvm flutter build apk --release")
sh("fvm flutter build apk --release --dart-define-from-file=.env")
end
end

Expand Down Expand Up @@ -78,7 +78,7 @@ platform :ios do
desc "Build iOS debug (for simulator)"
lane :build_debug do
Dir.chdir("..") do
sh("fvm flutter build ios --debug --simulator")
sh("fvm flutter build ios --debug --simulator --dart-define-from-file=.env")
end
end

Expand All @@ -89,7 +89,7 @@ platform :ios do

match_adhoc

sh("fvm flutter build ipa --release --export-options-plist ios/Runner/ExportOptions.plist")
sh("fvm flutter build ipa --release --export-options-plist ios/Runner/ExportOptions.plist --dart-define-from-file=.env")
end
end

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: cocktailr
description: "A new Flutter project."
publish_to: 'none'

version: 1.0.0+1
version: 1.1.0+1

environment:
sdk: '>=3.4.1 <4.0.0'
Expand Down

0 comments on commit 7258f0f

Please sign in to comment.