Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  specify next release
  use access layer 3
  • Loading branch information
Baptouuuu committed Jul 14, 2024
2 parents 7af82b9 + e816814 commit a9b0d68
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 5.1.0 - 2024-07-14

### Changed

- Requires `formal/access-layer:~3.0`

## 5.0.0 - 2024-03-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"innmind/signals": "~3.0",
"innmind/file-watch": "~4.0",
"innmind/stream": "~4.0",
"formal/access-layer": "^2.0",
"formal/access-layer": "~3.0",
"innmind/io": "~2.7"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Remote/Generic.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ public function http(): HttpTransport

public function sql(Url $server): Connection
{
return new Connection\Lazy(static fn() => Connection\PDO::of($server));
return Connection\Lazy::of(static fn() => Connection\PDO::of($server));
}
}

0 comments on commit a9b0d68

Please sign in to comment.