Skip to content

Commit 40bc1be

Browse files
authored
Merge pull request #1 from punktDe/FixComposerJson
[FIX] Set correct values in composer.json file and update EXT version
2 parents fa79626 + 677197c commit 40bc1be

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

Documentation/Changelog/Index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
Change log
77
==========
88

9+
Version 0.1.1
10+
-------------
11+
12+
- Fix composer.json file
13+
- Update extension state to 'beta' after further testing with TYPO3 9 and 10
14+
915
Version 0.1.0
1016
-------------
1117

Documentation/Settings.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ project = Quickedit
2525
# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version"
2626
# .................................................................................
2727

28-
release = 0.1.0
28+
release = 0.1.1
2929

3030
# .................................................................................
3131
# ... (recommended) displayed in footer

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"description": "This extension allows to define quick edit buttons for page property fields.",
44
"type": "typo3-cms-extension",
55
"keywords": ["TYPO3 CMS", "Pages", "Quickedit", "Toolbar"],
6-
"homepage": "",
7-
"license": "GPL-2.0+",
6+
"homepage": "https://github.com/punktDe/quickedit",
7+
"license": "GPL-2.0-or-later",
88
"support": {
9-
"issues": ""
9+
"issues": "https://github.com/punktDe/quickedit/issues"
1010
},
1111
"require": {
1212
"typo3/cms-core": "^9.5 || ^10.4"

ext_emconf.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$EM_CONF[$_EXTKEY] = [
33
'title' => 'Toolbar for editing page properties',
44
'description' => 'This extension provides a configurable toolbar for editing page properties.',
5-
'version' => '0.1.0',
5+
'version' => '0.1.1',
66
'category' => 'be',
77
'constraints' => [
88
'depends' => [
@@ -11,7 +11,7 @@
1111
'conflicts' => [],
1212
'suggests' => [],
1313
],
14-
'state' => 'alpha',
14+
'state' => 'beta',
1515
'uploadfolder' => 0,
1616
'createDirs' => '',
1717
'clearCacheOnLoad' => 0,

0 commit comments

Comments
 (0)