diff --git a/.codecov.yml b/.codecov.yml deleted file mode 100644 index 26cec6c2..00000000 --- a/.codecov.yml +++ /dev/null @@ -1,4 +0,0 @@ -codecov: - notify: - require_ci_to_pass: no - diff --git a/.travis.yml b/.travis.yml index e058cf32..eed5b7c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,10 +52,7 @@ install: - mysql -h 127.0.0.1 --protocol=TCP -u root -pfr0xl0r.TravisCI froxlor010 < install/froxlor.sql script: - - ant phpunit - -after_success: - - bash <(curl -s https://codecov.io/bash) -f "build/logs/clover.xml" + - ant phpunit-no-coverage notifications: irc: "chat.freenode.net#froxlor" diff --git a/install/froxlor.sql b/install/froxlor.sql index 05fe3410..96a33798 100644 --- a/install/froxlor.sql +++ b/install/froxlor.sql @@ -704,7 +704,7 @@ opcache.interned_strings_buffer'), ('panel', 'password_special_char', '!?<>ยง$%+#=@'), ('panel', 'customer_hide_options', ''), ('panel', 'is_configured', '0'), - ('panel', 'version', '0.10.17'), + ('panel', 'version', '0.10.18'), ('panel', 'db_version', '202005150'); diff --git a/install/updates/froxlor/0.10/update_0.10.inc.php b/install/updates/froxlor/0.10/update_0.10.inc.php index 7cdafb40..d994c0cb 100644 --- a/install/updates/froxlor/0.10/update_0.10.inc.php +++ b/install/updates/froxlor/0.10/update_0.10.inc.php @@ -639,3 +639,8 @@ if (\Froxlor\Froxlor::isFroxlorVersion('0.10.16')) { showUpdateStep("Updating from 0.10.16 to 0.10.17", false); \Froxlor\Froxlor::updateToVersion('0.10.17'); } + +if (\Froxlor\Froxlor::isFroxlorVersion('0.10.17')) { + showUpdateStep("Updating from 0.10.17 to 0.10.18", false); + \Froxlor\Froxlor::updateToVersion('0.10.18'); +} diff --git a/lib/Froxlor/Froxlor.php b/lib/Froxlor/Froxlor.php index c436f2c4..1cafd44f 100644 --- a/lib/Froxlor/Froxlor.php +++ b/lib/Froxlor/Froxlor.php @@ -7,7 +7,7 @@ final class Froxlor { // Main version variable - const VERSION = '0.10.17'; + const VERSION = '0.10.18'; // Database version (YYYYMMDDC where C is a daily counter) const DBVERSION = '202005150';