From 6d26521177dc8c8f21ab0a2427d38be55fb5e24b 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 | 4 ++++ composer.json | 2 +- src/Utils/UuidUtil.php | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7cdcca..05c2972 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. 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.4] - 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..95eaef7 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "vwo/vwo-fme-php-sdk", - "version": "1.2.1", + "version": "1.2.4", "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;