Version bump

This commit is contained in:
David Bomba 2022-08-22 18:12:54 +10:00
parent 16a1c65354
commit a07b955d79
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
5.5.14
5.5.15

View File

@ -103,7 +103,7 @@ class StorePaymentRequest extends Request
'invoices.*.invoice_id' => new ValidInvoicesRules($this->all()),
'credits.*.credit_id' => 'bail|required|exists:credits,id',
'credits.*.credit_id' => new ValidCreditsRules($this->all()),
'credits.*.amount' => ['required', new CreditsSumRule($this->all())],
'credits.*.amount' => ['bail','required', new CreditsSumRule($this->all())],
'invoices' => new ValidPayableInvoicesRule(),
'number' => ['nullable', 'bail', Rule::unique('payments')->where('company_id', auth()->user()->company()->id)],

View File

@ -14,8 +14,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => '5.5.14',
'app_tag' => '5.5.14',
'app_version' => '5.5.15',
'app_tag' => '5.5.15',
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', ''),