Skip to content

Commit

Permalink
Merge branch 'release/2024.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
stayallive committed Aug 14, 2024
2 parents 5e51e71 + 2424f1f commit 5445b91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ public function boot(): void
$keyFile = json_decode(config('services.google.credentials'), true);

return new BigQueryClient([
'projectId' => 'package-trends',
'keyFile' => $keyFile,
'keyFilePath' => storage_path('creds/google-bigquery.json'),
'projectId' => $keyFile['project_id'],
'keyFile' => $keyFile,
]);
});
}
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
? trim(file_get_contents($versionPath))
: env('APP_VERSION', '@dev'),

'versionString' => env('APP_VERSION_STRING', '2024.3.1'),
'versionString' => env('APP_VERSION_STRING', '2024.3.2'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 5445b91

Please sign in to comment.