Skip to content

Commit

Permalink
[Release] 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Sep 12, 2022
1 parent c4ddac0 commit 0d7ea11
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG-3.0.x.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# 3.0.0

CoreShop is now Licenced under CCL and GPLv3! (https://github.com/coreshop/CoreShop/pull/2061)

## Feature
- [IndexBundle] clone index, change default name of cloned item (https://github.com/coreshop/CoreShop/pull/2056)
- [CartPriceRules] introduce feature to allow cart-price rules based on cart-items (https://github.com/coreshop/CoreShop/pull/2057, https://github.com/coreshop/CoreShop/pull/2060)
- [Wishlist] Introduce a persisted wishlist - StorageListBundle now works as a base for Order and Wishlist (https://github.com/coreshop/CoreShop/pull/2030, https://github.com/coreshop/CoreShop/pull/2066)
- [Reports] Support filtering for order type (https://github.com/coreshop/CoreShop/pull/2055)
- [Symfony] fix Injecting @session is deprecated with Symfony (https://github.com/coreshop/CoreShop/pull/2035)
- [AccessManagement] prepare CoreShop for advanced access-management (https://github.com/coreshop/CoreShop/pull/2063)
- [Pimcore] 10.5 as min requirement (https://github.com/coreshop/CoreShop/pull/2067)

## Bugs
- [VariantBundle] Serializer: Allow $innerObject to be null (https://github.com/coreshop/CoreShop/pull/2058, https://github.com/coreshop/CoreShop/pull/2069)
- [DataHub] Fix non unique typename (https://github.com/coreshop/CoreShop/pull/2004)
- [Translations] Update admin-translations.yml (https://github.com/coreshop/CoreShop/pull/2064)
- [Pimcore UI] Make default Product Unit unselectable (https://github.com/coreshop/CoreShop/pull/2065)
- [Variant] allow recursive attributes and variants (https://github.com/coreshop/CoreShop/pull/2068)

# 3.0.0-beta.5
> This will be the last BETA for the final release.
Expand Down
14 changes: 7 additions & 7 deletions src/CoreShop/Bundle/CoreBundle/Application/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ final class Version

public static function getVersion(): string
{
return sprintf(
'%s.%s.%s-%s',
self::MAJOR_VERSION,
self::MINOR_VERSION,
self::RELEASE_VERSION,
self::EXTRA_VERSION,
);
$version = sprintf('%s.%s.%s', self::MAJOR_VERSION, self::MINOR_VERSION, self::RELEASE_VERSION);

if (self::EXTRA_VERSION !== '') {
$version = sprintf('%s-%s', $version, self::EXTRA_VERSION);
}

return $version;
}
}

0 comments on commit 0d7ea11

Please sign in to comment.