From 9d67e4683c826ad08ca73d6de7d29b090b733c26 Mon Sep 17 00:00:00 2001
From: Attogram Project <attogram@users.noreply.github.com>
Date: Sun, 14 Apr 2019 17:53:06 +0200
Subject: [PATCH] v1.0.5

---
 .travis.yml                   | 3 ++-
 src/CurrencyExchangeRates.php | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2a34d58..9cf8688 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,8 @@ script:
   - cd your-install-directory
   - chmod 777 db
   - cp custom/config.example.php custom/config.php
-  - php cli/update.php
+  - cd cli
+  - php update.php
   # PHP Lint all the things
   - if find . -name "*.php" -exec php -l {} 2>&1 \; | grep "error,"; then exit 1; fi;
   # Unit Tests
diff --git a/src/CurrencyExchangeRates.php b/src/CurrencyExchangeRates.php
index 95e5320..26c6f2a 100644
--- a/src/CurrencyExchangeRates.php
+++ b/src/CurrencyExchangeRates.php
@@ -17,7 +17,7 @@ class CurrencyExchangeRates
     use CustomizationTrait;
 
     /** @var string Version*/
-    const VERSION = '1.0.5-pre';
+    const VERSION = '1.0.5';
 
     /** @var string Feeds Namespace */
     const FEEDS_NAMESPACE = "\\Attogram\\Currency\\Feeds\\";