From c61d07235c743d079c778136ca4d716a7a354768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Novotn=C3=BD?= Date: Thu, 5 Sep 2024 13:45:26 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 21 ++++++++++++++++++++- README.md | 2 +- tests/Integration/ChangesSupportTest.php | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b0859d..a2e8b1f 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,26 @@ 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.10.0...master) +## [Unreleased](https://github.com/inspirum/balikobot-php/compare/v7.11.0...master) + + +## [v7.11.0 (2024-09-05)](https://github.com/inspirum/balikobot-php/compare/v7.10.0...v7.11.0) +### Added +- Added support for new options from documentation **v1.999** (2024-07-30) + - Added **country_reference** attributes + - Added **country_reference_type** attributes +- Added **CP_NV** service type +- Added **ZASILKOVNA_IT_POST_PP** service type +- Added **ZASILKOVNA_IT_POST_HD** service type +- Added **FEDEX_FIRST** service type +- Added **FEDEX_PRIORITY_EXPRESS** service type +- Added **FEDEX_PRIORITY** service type +- Added **FEDEX_REGIONAL_EXPRESS_FREIGHT** service type +- Added **FEDEX_REGIONAL_REIGHT** service type +- Added **SAMEDAY_CROSSBORDER_24H_HD** service type +- Added **SAMEDAY_CROSSBORDER_LOCKER_HD** service type +### Changed +- Use list collections ## [v7.10.0 (2024-06-07)](https://github.com/inspirum/balikobot-php/compare/v7.9.0...v7.10.0) diff --git a/README.md b/README.md index 2886efa..51aecbd 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Total Downloads][ico-packagist-download]][link-packagist-download] [![Software License][ico-license]][link-licence] -Offers implementation of Balikobot API [v2][link-api-v2-upgrade] described in the official [documentation][link-api-v2] until **v1.998** *(2024-06-04)*. +Offers implementation of Balikobot API [v2][link-api-v2-upgrade] described in the official [documentation][link-api-v2] until **v2.004** *(2024-08-06)*. > If you want to use older API [v1][link-api], please use [`^4.0`](https://github.com/inspirum/balikobot-php/tree/v4.5.0) version. diff --git a/tests/Integration/ChangesSupportTest.php b/tests/Integration/ChangesSupportTest.php index ff217a4..2c56ede 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.998'; + $expected = (float) '2.004'; $actual = (float) $changelog->getLatestVersion(); if ($actual > $expected) {