Skip to content

Commit 8d7ecd0

Browse files
committed
Prepare v1.3.0 release
1 parent a8438a8 commit 8d7ecd0

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

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

3+
## 1.3.0 (2021-11-12)
4+
5+
* Feature: Support upcoming PHP 8.1 release.
6+
(#49 by @SimonFrings)
7+
8+
* Feature: Support passing custom PHP binary as optional argument to `Factory`.
9+
(#45 and #46 by @clue)
10+
11+
```php
12+
// advanced usage: pass custom PHP binary to use when spawning child process
13+
$factory = new Clue\React\SQLite\Factory(null, '/usr/bin/php6.0');
14+
```
15+
16+
* Feature: Support using blocking SQLite adapter when using an empty binary path.
17+
(#48 by @clue)
18+
19+
```php
20+
// advanced usage: empty binary path runs blocking SQLite in same process
21+
$factory = new Clue\React\SQLite\Factory(null, '');
22+
```
23+
24+
* Feature: Use default `php` binary instead of respecting `PHP_BINARY` when automatic binary detection fails for non-CLI SAPIs.
25+
(#50 by @clue)
326

427
## 1.2.0 (2021-10-04)
528

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ This project follows [SemVer](https://semver.org/).
438438
This will install the latest supported version:
439439

440440
```bash
441-
$ composer require clue/reactphp-sqlite:^1.2
441+
$ composer require clue/reactphp-sqlite:^1.3
442442
```
443443

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

0 commit comments

Comments
 (0)