Skip to content

Commit

Permalink
[TASK] Release version 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fsuter committed Jan 23, 2019
1 parent eba01d5 commit bebd574
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 31 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Catch uncompress errors when displaying extra data (thanks to E. Lang)
* Ensure spinner icon is available
* Mention enable_DLOG for TYPO3 v8 in the documentation
* Release version 3.0.4

2018-02-22 Francois Suter <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Developer's Log
log, devlog, logging

:Copyright:
2007-2018
2007-2019

:Author:
François Suter (Cobweb)
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[general]
copyright = 2007-2018
copyright = 2007-2019
project = Developer's Log
release = 3.0.3
release = 3.0.4
version = 3.0
[html_theme_options]
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"Devlog\\Devlog\\": "Classes/"
}
},
"version": "3.0.3",
"version": "3.0.4",
"require": {
"typo3/cms-core": ">=7.6.0,<9.0"
},
Expand Down
54 changes: 27 additions & 27 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,30 @@
# "version" and "dependencies" must not be touched!
########################################################################

$EM_CONF[$_EXTKEY] = array(
'title' => 'Developer\'s Log',
'description' => 'The Developer\'s Log extension provides development logging/debugging functionality for usage of GeneralUtility::devlog() and a BE module to browse the logs.',
'category' => 'misc',
'priority' => '',
'loadOrder' => '',
'module' => 'mod1',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'author' => 'Francois Suter',
'author_email' => '[email protected]',
'author_company' => '',
'version' => '3.0.3',
'constraints' => array(
'depends' => array(
'typo3' => '7.6.0-8.9.99',
),
'conflicts' => array(
),
'suggests' => array(
),
),
);
$EM_CONF[$_EXTKEY] = [
'title' => 'Developer\'s Log',
'description' => 'The Developer\'s Log extension provides development logging/debugging functionality for usage of GeneralUtility::devlog() and a BE module to browse the logs.',
'category' => 'misc',
'priority' => '',
'loadOrder' => '',
'module' => 'mod1',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'author' => 'Francois Suter',
'author_email' => '[email protected]',
'author_company' => '',
'version' => '3.0.4',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-8.9.99',
],
'conflicts' => [
],
'suggests' => [
],
],
];

0 comments on commit bebd574

Please sign in to comment.