Skip to content

Commit a9b0d68

Browse files
committed
Merge branch 'develop'
* develop: specify next release use access layer 3
2 parents 7af82b9 + e816814 commit a9b0d68

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

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

3+
## 5.1.0 - 2024-07-14
4+
5+
### Changed
6+
7+
- Requires `formal/access-layer:~3.0`
8+
39
## 5.0.0 - 2024-03-10
410

511
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"innmind/signals": "~3.0",
2727
"innmind/file-watch": "~4.0",
2828
"innmind/stream": "~4.0",
29-
"formal/access-layer": "^2.0",
29+
"formal/access-layer": "~3.0",
3030
"innmind/io": "~2.7"
3131
},
3232
"autoload": {

src/Remote/Generic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ public function http(): HttpTransport
9999

100100
public function sql(Url $server): Connection
101101
{
102-
return new Connection\Lazy(static fn() => Connection\PDO::of($server));
102+
return Connection\Lazy::of(static fn() => Connection\PDO::of($server));
103103
}
104104
}

0 commit comments

Comments
 (0)