summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-04-22 15:04:02 +0200
committerIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-04-22 15:04:02 +0200
commit64fcd06cd820e6efcbb16962546bebbc1f29ecbd (patch)
treea93e48e5d6d5023c05271c2205b79a93a1b6e8be /src
parent08b3277bc7c5abafc3828c104b94c73000c081dd (diff)
downloadcsv-64fcd06cd820e6efcbb16962546bebbc1f29ecbd.zip
csv-64fcd06cd820e6efcbb16962546bebbc1f29ecbd.tar.gz
csv-64fcd06cd820e6efcbb16962546bebbc1f29ecbd.tar.bz2
prepare for 7.1 release
Diffstat (limited to 'src')
-rw-r--r--src/AbstractCsv.php2
-rw-r--r--src/Config/Controls.php2
-rw-r--r--src/Config/Output.php2
-rw-r--r--src/Exception/InvalidRowException.php2
-rw-r--r--src/Modifier/MapIterator.php2
-rw-r--r--src/Modifier/QueryFilter.php2
-rw-r--r--src/Modifier/RowFilter.php2
-rw-r--r--src/Modifier/StreamFilter.php2
-rw-r--r--src/Plugin/ColumnConsistencyValidator.php2
-rw-r--r--src/Plugin/ForbiddenNullValuesValidator.php2
-rw-r--r--src/Plugin/SkipNullValuesFormatter.php2
-rw-r--r--src/Reader.php2
-rw-r--r--src/Writer.php2
13 files changed, 13 insertions, 13 deletions
diff --git a/src/AbstractCsv.php b/src/AbstractCsv.php
index 177d461..4b76236 100644
--- a/src/AbstractCsv.php
+++ b/src/AbstractCsv.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Config/Controls.php b/src/Config/Controls.php
index 0b56b16..ba6c76a 100644
--- a/src/Config/Controls.php
+++ b/src/Config/Controls.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Config/Output.php b/src/Config/Output.php
index 6ba19ce..3d85a1f 100644
--- a/src/Config/Output.php
+++ b/src/Config/Output.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Exception/InvalidRowException.php b/src/Exception/InvalidRowException.php
index b679ec2..9649cf8 100644
--- a/src/Exception/InvalidRowException.php
+++ b/src/Exception/InvalidRowException.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Modifier/MapIterator.php b/src/Modifier/MapIterator.php
index 438ddf8..504b9b2 100644
--- a/src/Modifier/MapIterator.php
+++ b/src/Modifier/MapIterator.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Modifier/QueryFilter.php b/src/Modifier/QueryFilter.php
index 86af6d2..1c7596a 100644
--- a/src/Modifier/QueryFilter.php
+++ b/src/Modifier/QueryFilter.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Modifier/RowFilter.php b/src/Modifier/RowFilter.php
index ec9aa0b..8f8f796 100644
--- a/src/Modifier/RowFilter.php
+++ b/src/Modifier/RowFilter.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Modifier/StreamFilter.php b/src/Modifier/StreamFilter.php
index 16a47d3..a948101 100644
--- a/src/Modifier/StreamFilter.php
+++ b/src/Modifier/StreamFilter.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Plugin/ColumnConsistencyValidator.php b/src/Plugin/ColumnConsistencyValidator.php
index 6e46397..da8b0fe 100644
--- a/src/Plugin/ColumnConsistencyValidator.php
+++ b/src/Plugin/ColumnConsistencyValidator.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Plugin/ForbiddenNullValuesValidator.php b/src/Plugin/ForbiddenNullValuesValidator.php
index e89d5d3..c9f0ca8 100644
--- a/src/Plugin/ForbiddenNullValuesValidator.php
+++ b/src/Plugin/ForbiddenNullValuesValidator.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Plugin/SkipNullValuesFormatter.php b/src/Plugin/SkipNullValuesFormatter.php
index 5d59e55..b00403c 100644
--- a/src/Plugin/SkipNullValuesFormatter.php
+++ b/src/Plugin/SkipNullValuesFormatter.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Reader.php b/src/Reader.php
index 2d73795..0be798b 100644
--- a/src/Reader.php
+++ b/src/Reader.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
diff --git a/src/Writer.php b/src/Writer.php
index 2ee36e4..9215b88 100644
--- a/src/Writer.php
+++ b/src/Writer.php
@@ -4,7 +4,7 @@
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
-* @version 7.0.1
+* @version 7.1.0
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE