Skip to content

Commit 927ebd6

Browse files
committed
Prepare 2.4.2 release.
1 parent de0a9d9 commit 927ebd6

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

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

3+
## 2.4.2
4+
5+
- Include original stacktrace when query fails.
6+
([#15](https://github.com/isoos/postgresql-dart/pull/15) by [davidmartos96](https://github.com/davidmartos96))
7+
38
## 2.4.1+2
49

510
- Fix error when sending json data with `execute()` [#11](https://github.com/isoos/postgresql-dart/pull/11)

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: postgres
22
description: PostgreSQL database driver. Supports statement reuse and binary protocol.
3-
version: 2.4.1+2
3+
version: 2.4.2
44
homepage: https://github.com/isoos/postgresql-dart
55

66
environment:

test/docker.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,9 @@ Future<bool> _isPostgresContainerRunning() async {
4343
'docker',
4444
['ps', '--format', '{{.Names}}'],
4545
);
46-
return pr.stdout.toString().split('\n').map((s) => s.trim()).contains(_kContainerName);
46+
return pr.stdout
47+
.toString()
48+
.split('\n')
49+
.map((s) => s.trim())
50+
.contains(_kContainerName);
4751
}

0 commit comments

Comments
 (0)