Skip to content

Commit 73aa9e5

Browse files
author
Francois Suter
committed
[TASK] Release version 2.1.0
1 parent c51b319 commit 73aa9e5

File tree

6 files changed

+53
-25
lines changed

6 files changed

+53
-25
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
2017-04-05 Francois Suter (Cobweb) <[email protected]>
22

33
* Added compatibility with TYPO3 v8, in particular Doctrine DBAL, resolves #1
4+
* Released version 2.1.0
45

56
2016-05-02 Francois Suter (Cobweb) <[email protected]>
67

Documentation/Settings.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This is the project specific Settings.yml file.
2+
# Place Sphinx specific build information here.
3+
# Settings given here will replace the settings of 'conf.py'.
4+
5+
---
6+
conf.py:
7+
copyright: 2009-2017
8+
project: SQL Connector Service
9+
version: 2.1
10+
release: 2.1.0
11+
latex_documents:
12+
- - Index
13+
- svconnector_sql.tex
14+
- SQL Connector Service
15+
- Francois Suter
16+
- manual
17+
latex_elements:
18+
papersize: a4paper
19+
pointsize: 10pt
20+
preamble: \usepackage{typo3}
21+
extensions:
22+
- sphinx.ext.intersphinx
23+
- t3sphinx.ext.t3extras
24+
- t3sphinx.ext.t3tablerows
25+
- t3sphinx.ext.targets
26+
...

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Connector service - SQL
2+
3+
This service relies on the database abstraction layer provided by TYPO3
4+
(ADODB for v7, Doctrine DBAL for v8) to access any supported, remote DBMS,
5+
execute SELECT queries and return their result as a PHP array or a XML structure.
6+
7+
Read the manual for more details: https://docs.typo3.org/typo3cms/extensions/svconnector_sql/

README.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"Cobweb\\SvconnectorSql\\": "Classes/"
1717
}
1818
},
19-
"version": "2.0.0",
19+
"version": "2.1.0",
2020
"require": {
2121
"typo3/cms-core": ">=7.6.0,<9.0",
22-
"cobweb/svconnector": ">=3.0.0"
22+
"cobweb/svconnector": ">=3.1.0"
2323
},
2424
"replace": {
2525
"svconnector_sql": "self.version",

ext_emconf.php

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
<?php
22

3-
/*********************************************************************
4-
* Extension configuration file for ext "svconnector_sql".
5-
*
6-
* Generated by ext 02-05-2016 11:37 UTC
7-
*
8-
* https://github.com/t3elmar/Ext
9-
*********************************************************************/
3+
/***************************************************************
4+
* Extension Manager/Repository config file for ext "svconnector_sql".
5+
*
6+
* Auto generated 05-04-2017 18:09
7+
*
8+
* Manual updates:
9+
* Only the data in the array - everything else is removed by next
10+
* writing. "version" and "dependencies" must not be touched!
11+
***************************************************************/
1012

1113
$EM_CONF[$_EXTKEY] = array (
1214
'title' => 'Connector service - SQL',
13-
'description' => 'Connector service for any SQL-based database via ADODB.',
15+
'description' => 'Connector service for any SQL-based database via ADODB/Doctrine DBAL.',
1416
'category' => 'services',
1517
'author' => 'Francois Suter (Cobweb)',
1618
'author_email' => '[email protected]',
@@ -19,24 +21,21 @@
1921
'createDirs' => '',
2022
'clearCacheOnLoad' => 0,
2123
'author_company' => '',
22-
'version' => '2.0.0',
23-
'constraints' =>
24+
'version' => '2.1.0',
25+
'constraints' =>
2426
array (
25-
'depends' =>
27+
'depends' =>
2628
array (
2729
'typo3' => '7.6.0-8.99.99',
28-
'svconnector' => '3.0.0-0.0.0',
30+
'svconnector' => '3.1.0-0.0.0',
2931
),
30-
'conflicts' =>
32+
'conflicts' =>
3133
array (
3234
),
33-
'suggests' =>
35+
'suggests' =>
3436
array (
3537
),
3638
),
37-
'_md5_values_when_last_written' => 'a:17:{s:9:"ChangeLog";s:4:"22c4";s:11:"LICENSE.txt";s:4:"6404";s:10:"README.txt";s:4:"945c";s:13:"composer.json";s:4:"93ef";s:21:"ext_conf_template.txt";s:4:"3fd7";s:12:"ext_icon.png";s:4:"0a7d";s:17:"ext_localconf.php";s:4:"4ac2";s:32:"Classes/Service/ConnectorSql.php";s:4:"eacb";s:26:"Documentation/Includes.txt";s:4:"c83c";s:23:"Documentation/Index.rst";s:4:"1394";s:25:"Documentation/Targets.rst";s:4:"cc7b";s:37:"Documentation/Configuration/Index.rst";s:4:"5236";s:33:"Documentation/Developer/Index.rst";s:4:"3fbc";s:36:"Documentation/Installation/Index.rst";s:4:"0547";s:36:"Documentation/Introduction/Index.rst";s:4:"b8dd";s:40:"Resources/Private/Language/locallang.xlf";s:4:"d004";s:42:"Resources/Public/Samples/Configuration.txt";s:4:"74ed";}',
38-
'comment' => 'Verified compatibility with TYPO3 CMS 7; moved to namespaces.',
39-
'user' => 'francois',
39+
'_md5_values_when_last_written' => 'a:24:{s:9:"ChangeLog";s:4:"2c7d";s:11:"LICENSE.txt";s:4:"6404";s:9:"README.md";s:4:"6493";s:13:"composer.json";s:4:"d251";s:21:"ext_conf_template.txt";s:4:"3fd7";s:12:"ext_icon.png";s:4:"0a7d";s:17:"ext_localconf.php";s:4:"4ac2";s:36:"Classes/Database/AdodbConnection.php";s:4:"e42d";s:46:"Classes/Database/DatabaseConnectionFactory.php";s:4:"3d8a";s:48:"Classes/Database/DatabaseConnectionInterface.php";s:4:"df44";s:43:"Classes/Database/DoctrineDbalConnection.php";s:4:"27ea";s:49:"Classes/Exception/DatabaseConnectionException.php";s:4:"57a3";s:41:"Classes/Exception/QueryErrorException.php";s:4:"b9cf";s:32:"Classes/Service/ConnectorSql.php";s:4:"06f7";s:26:"Documentation/Includes.txt";s:4:"c83c";s:23:"Documentation/Index.rst";s:4:"a2be";s:26:"Documentation/Settings.yml";s:4:"0319";s:25:"Documentation/Targets.rst";s:4:"cc7b";s:37:"Documentation/Configuration/Index.rst";s:4:"ad41";s:33:"Documentation/Developer/Index.rst";s:4:"1462";s:36:"Documentation/Installation/Index.rst";s:4:"f366";s:36:"Documentation/Introduction/Index.rst";s:4:"fa78";s:40:"Resources/Private/Language/locallang.xlf";s:4:"d004";s:42:"Resources/Public/Samples/Configuration.txt";s:4:"7d89";}',
4040
);
4141

42-
?>

0 commit comments

Comments
 (0)