Skip to content

Commit 8b98da2

Browse files
authored
Merge pull request #21 from SimonFrings/v1.1.0
Prepare v1.1.0 release
2 parents 0a0684a + d9f01aa commit 8b98da2

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/.gitattributes export-ignore
2+
/.github/workflows/ export-ignore
23
/.gitignore export-ignore
3-
/.travis.yml export-ignore
44
/examples/ export-ignore
55
/phpunit.xml.dist export-ignore
66
/phpunit.xml.legacy export-ignore

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 1.1.0 (2020-12-10)
4+
5+
* Feature: Add decoding benchmark plus benchmark for GZIP-compressed CSV files.
6+
(#15 by @clue)
7+
8+
* Improve test suite and add `.gitattributes` to exclude dev files from exports.
9+
Add PHP 8 support, update to PHPUnit 9 and simplify test setup.
10+
(#13 and #14 by @clue and #16, #18, #19 and #20 by @SimonFrings)
11+
12+
* Improve documentation wording/typos and examples.
13+
(#9 by @loilo and #10 by @clue)
14+
315
## 1.0.0 (2018-08-14)
416

517
* First stable release, following SemVer

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ rows efficiently without having to load the whole file into memory at once.
2626

2727
**Table of contents**
2828

29+
* [Support us](#support-us)
2930
* [CSV format](#csv-format)
3031
* [Usage](#usage)
3132
* [Decoder](#decoder)
@@ -36,6 +37,16 @@ rows efficiently without having to load the whole file into memory at once.
3637
* [License](#license)
3738
* [More](#more)
3839

40+
## Support us
41+
42+
We invest a lot of time developing, maintaining and updating our awesome
43+
open-source projects. You can help us sustain this high-quality of our work by
44+
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
45+
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
46+
for details.
47+
48+
Let's take these projects to the next level together! 🚀
49+
3950
## CSV format
4051

4152
CSV (Comma-Separated Values or less commonly Character-Separated Values) is a
@@ -295,7 +306,7 @@ test,1,24
295306
```
296307

297308
The `Encoder` supports the same optional parameters as the underlying
298-
[`fputcsv()`](http://php.net/fputcsv) function.
309+
[`fputcsv()`](https://www.php.net/fputcsv) function.
299310
This means that, by default, CSV fields will be delimited by a comma (`,`), will
300311
use a quote enclosure character (`"`) and a backslash escape character (`\`).
301312
This behavior can be controlled through the optional constructor parameters:
@@ -355,7 +366,7 @@ This project follows [SemVer](https://semver.org/).
355366
This will install the latest supported version:
356367

357368
```bash
358-
$ composer require clue/reactphp-csv:^1.0
369+
$ composer require clue/reactphp-csv:^1.1
359370
```
360371

361372
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"authors": [
88
{
99
"name": "Christian Lück",
10-
"email": "christian@lueck.tv"
10+
"email": "christian@clue.engineering"
1111
}
1212
],
1313
"autoload": {

0 commit comments

Comments
 (0)