Skip to content

Commit

Permalink
Prepare v0.3.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatz committed Dec 17, 2024
1 parent 2095c56 commit c322d78
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.3.2

* Move record API access query construction to RecordApi construction time.
* Cache auth queries
* Some tweaks and hooks API for trailbase_sqlite::Connection.
* Remove sqlite-loadable and replace with rusqlite functions.
* Reduce allocations.

## v0.3.1

* Fix client-ip logging.
Expand Down
3 changes: 2 additions & 1 deletion client/trailbase-dart/test/trailbase_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:io';
import 'dart:convert';

import 'package:trailbase/trailbase.dart';
import 'package:test/test.dart';
Expand Down Expand Up @@ -30,7 +31,7 @@ Future<Process> initTrailBase() async {
final result = await Process.run('cargo', ['build']);
if (result.exitCode > 0) {
throw Exception(
'Cargo build failed.\n\nstdout: ${result.stdout}}\n\nstderr: ${result.stderr}}\n');
'Cargo build failed.\n\nstdout: ${utf8.decode(result.stdout)}}\n\nstderr: ${utf8.decode(result.stderr)}}\n');
}
final process = await Process.start('cargo', [
'run',
Expand Down

0 comments on commit c322d78

Please sign in to comment.