diff --git a/VERSION.txt b/VERSION.txt index 58bc1d26e206..bf55a892b987 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.8.46 \ No newline at end of file +5.8.47 \ No newline at end of file diff --git a/config/ninja.php b/config/ninja.php index 4c0e77a57d42..7391e7839f92 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -17,8 +17,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => env('APP_VERSION', '5.8.46'), - 'app_tag' => env('APP_TAG', '5.8.46'), + 'app_version' => env('APP_VERSION', '5.8.47'), + 'app_tag' => env('APP_TAG', '5.8.47'), 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', false), diff --git a/tests/Unit/InvoiceInclusiveTest.php b/tests/Unit/InvoiceInclusiveTest.php index e84a12e10d23..f5fb831c3fc5 100644 --- a/tests/Unit/InvoiceInclusiveTest.php +++ b/tests/Unit/InvoiceInclusiveTest.php @@ -111,9 +111,6 @@ class InvoiceInclusiveTest extends TestCase $this->invoice->is_amount_discount = true; $this->invoice->line_items = $this->buildLineItems(); - nlog("xxx"); - nlog($this->invoice->withoutRelations()->toArray()); - $calc = $this->invoice->calc(); $this->assertEquals($calc->getSubTotal(), 20); @@ -300,7 +297,7 @@ class InvoiceInclusiveTest extends TestCase $this->invoice_calc->build(); $line_items = $this->invoice_calc->invoice_items->getLineItems(); - nlog($this->invoice_calc->getTaxMap()); + // nlog($this->invoice_calc->getTaxMap()); $this->assertEquals(19, $this->invoice_calc->getSubTotal()); $this->assertEquals(0.95, $this->invoice_calc->getTotalDiscount());