Skip to content

Commit a11fc1b

Browse files
authored
Merge pull request #124 from extcode/prepare_release_5-1-0
[BUGFIX] Prepare release 5.1.0
2 parents aff10cb + 5b99c3d commit a11fc1b

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

Documentation/guides.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
interlink-shortcode="extcode/cart_events"
1212
/>
1313
<project title="Cart Events"
14-
release="5.0.0"
15-
version="5.0"
14+
release="5.1.0"
15+
version="5.1"
1616
copyright="2018 - 2025"
1717
/>
1818
<inventory id="t3tsref" url="https://docs.typo3.org/typo3cms/TyposcriptReference/"/>

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Cart - Events',
55
'description' => 'Shopping Cart(s) for TYPO3 - Event Extension',
66
'category' => 'plugin',
7-
'version' => '5.0.0',
7+
'version' => '5.1.0',
88
'state' => 'stable',
99
'author' => 'Daniel Gohlke',
1010
'author_email' => 'ext@extco.de',

shell.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
{
22
pkgs ? import <nixpkgs> { }
33
,php81 ? import <phps>
4-
,php85 ? import (fetchTarball "https://github.com/piotrkwiecinski/nixpkgs/archive/1c614d75004b9eb1ecda6ddeb959c4f544403de5.tar.gz") {}
54
,phpVersion ? "php81"
65
}:
76

87
let
98
phpVersionPkgs =
10-
if (phpVersion == "php85") then php85.${phpVersion}
11-
else if (phpVersion == "php81") then php81.packages.x86_64-linux.${phpVersion}
9+
if (phpVersion == "php81") then php81.packages.x86_64-linux.${phpVersion}
1210
else pkgs.${phpVersion};
1311
php = phpVersionPkgs.buildEnv {
1412
extensions = { enabled, all }: enabled ++ (with all; [

0 commit comments

Comments
 (0)