Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-novotny committed Jun 7, 2024
1 parent 4a566d4 commit 840be31
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 12 additions & 0 deletions src/Definitions/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -2375,6 +2385,7 @@ private static function pbh(): array
self::PBH_WARENPOST,
self::PBH_HR_POST,
self::PBH_BOX_NOW,
self::PBH_SI,
];
}

Expand Down Expand Up @@ -2748,6 +2759,7 @@ private static function dachser(): array
self::DACHSER_FLEX,
self::DACHSER_ONSITE,
self::DACHSER_CLASSIC,
self::DACHSER_ONSITE_FIX,
];
}

Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/ChangesSupportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 840be31

Please sign in to comment.