From 840be3181b103fc2f307718a2356df24570b887b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Novotn=C3=BD?= Date: Fri, 7 Jun 2024 14:05:07 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 7 ++++++- src/Definitions/Service.php | 12 ++++++++++++ tests/Integration/ChangesSupportTest.php | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69874a..cfeb8dc 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/inspirum/balikobot-php/compare/v7.9.0...master) +## [Unreleased](https://github.com/inspirum/balikobot-php/compare/v7.10.0...master) + + +## [v7.10.0 (2024-06-07)](https://github.com/inspirum/balikobot-php/compare/v7.9.0...v7.10.0) - Added **ZASILKOVNA_GR_ELTA_COURIER_HD** service type - Added **ZASILKOVNA_GR_ELTA_COURIER_PP** service type - Added **ZASILKOVNA_IT_BARTOLINI_BOX** service type +- Added **PBH_SI** service type +- Added **DACHSER_ONSITE_FIX** service type ## [v7.9.0 (2024-04-21)](https://github.com/inspirum/balikobot-php/compare/v7.8.0...v7.9.0) diff --git a/src/Definitions/Service.php b/src/Definitions/Service.php index a612713..8db6af7 100644 --- a/src/Definitions/Service.php +++ b/src/Definitions/Service.php @@ -1401,6 +1401,11 @@ final class Service extends BaseEnum */ public const PBH_BOX_NOW = '31'; + /** + * Slovinská pošta + */ + public const PBH_SI = '32'; + /** * Worlwide zásilky */ @@ -1836,6 +1841,11 @@ final class Service extends BaseEnum */ public const DACHSER_CLASSIC = 'N'; + /** + * Dachser Targo on-site FIX + */ + public const DACHSER_ONSITE_FIX = 'U'; + /** * DHL Parcel Connect */ @@ -2375,6 +2385,7 @@ private static function pbh(): array self::PBH_WARENPOST, self::PBH_HR_POST, self::PBH_BOX_NOW, + self::PBH_SI, ]; } @@ -2748,6 +2759,7 @@ private static function dachser(): array self::DACHSER_FLEX, self::DACHSER_ONSITE, self::DACHSER_CLASSIC, + self::DACHSER_ONSITE_FIX, ]; } diff --git a/tests/Integration/ChangesSupportTest.php b/tests/Integration/ChangesSupportTest.php index 27e6c26..e04209a 100644 --- a/tests/Integration/ChangesSupportTest.php +++ b/tests/Integration/ChangesSupportTest.php @@ -27,7 +27,7 @@ public function testLatestChangesSupport(): void $changelog = $infoService->getChangelog(); - $expected = (float) '1.996'; + $expected = (float) '1.998'; $actual = (float) $changelog->getLatestVersion(); if ($actual > $expected) {