Skip to content

Commit 7e26ef5

Browse files
committed
Prepare v1.0.0 release
1 parent 6a5b84c commit 7e26ef5

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 1.0.0 (2018-08-14)
4+
5+
* First stable release, following SemVer

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rows efficiently without having to load the whole file into memory at once.
2020
and does not get in your way.
2121
Builds on top of well-tested components and well-established concepts instead of reinventing the wheel.
2222
* **Good test coverage** -
23-
Comes with an [automated tests suite](#tests) and is regularly tested in the *real world*
23+
Comes with an [automated tests suite](#tests) and is regularly tested in the *real world*.
2424

2525
**Table of contents**
2626

@@ -79,12 +79,12 @@ World!"
7979
> Note that these more advanced parsing rules are often handled inconsistently
8080
by other applications. Nowadays, these parsing rules are defined as part of
8181
[RFC 4180](https://tools.ietf.org/html/rfc4180), however many applications
82-
starting using some CSV-variant long before this standard was defined.
82+
started using some CSV-variant long before this standard was defined.
8383

8484
Some applications refer to CSV as Character-Separated Values, simply because
8585
using another delimiter (such as semicolon or tab) is a rather common approach
8686
to avoid the need to enclose common values in quotes. This is particularly
87-
common for European systems that use a comma as decimal separator.
87+
common for systems in Europe (and elsewhere) that use a comma as decimal separator.
8888

8989
```
9090
name;comment
@@ -349,12 +349,15 @@ For more details, see ReactPHP's
349349
The recommended way to install this library is [through Composer](https://getcomposer.org).
350350
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
351351

352+
This project follows [SemVer](https://semver.org/).
352353
This will install the latest supported version:
353354

354355
```bash
355-
$ composer require clue/reactphp-csv:dev-master
356+
$ composer require clue/reactphp-csv:^1.0
356357
```
357358

359+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
360+
358361
This project aims to run on any platform and thus does not require any PHP
359362
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
360363
HHVM.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clue/reactphp-csv",
3-
"description": "Streaming CSV (Comma-Separated Values or Character-Separated Values) parser and encoder for ReactPHP",
3+
"description": "Streaming CSV (Comma-Separated Values or Character-Separated Values) parser and encoder for ReactPHP.",
44
"keywords": ["CSV", "comma-separated values", "character-separated values", "streaming", "ReactPHP"],
55
"homepage": "https://github.com/clue/reactphp-csv",
66
"license": "MIT",

0 commit comments

Comments
 (0)