diff --git a/CHANGELOG.md b/CHANGELOG.md index f7cdcca..7dc1e93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +[1.2.2] - 2024-07-29 +### Fixed + +- Removed unnecessary vendor/autoload from UuidUtil.php + [1.2.1] - 2024-07-17 ### Added diff --git a/composer.json b/composer.json index 818863e..c95b483 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "vwo/vwo-fme-php-sdk", - "version": "1.2.1", + "version": "1.2.2", "keywords": ["vwo", "fme", "sdk"], "license": "Apache-2.0", "authors": [{ diff --git a/src/Utils/UuidUtil.php b/src/Utils/UuidUtil.php index 8f73507..ef0a313 100644 --- a/src/Utils/UuidUtil.php +++ b/src/Utils/UuidUtil.php @@ -17,7 +17,6 @@ */ namespace vwo\Utils; -require 'vendor/autoload.php'; use Ramsey\Uuid\Uuid;