From 80c977a79ceb193bdca33f02ed08e3d6890538cc Mon Sep 17 00:00:00 2001 From: Saksham Gupta Date: Mon, 29 Jul 2024 21:26:43 +0530 Subject: [PATCH] fix: remove vendor/autoload from UuidUtil --- CHANGELOG.md | 5 +++++ composer.json | 2 +- src/Utils/UuidUtil.php | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) 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;