Skip to content

Commit

Permalink
🔖 release v7.0.4 (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Aug 14, 2023
1 parent b521f7c commit b5ef81e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions chopper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 7.0.4

- Export ChopperLogRecord to library surface ([#480](https://github.com/lejard-h/chopper/pull/480))
- Make ChopperLogRecord final ([#481](https://github.com/lejard-h/chopper/pull/481))

## 7.0.3

- Use ChopperLogRecord in HttpLoggingInterceptor to log lines ([#475](https://github.com/lejard-h/chopper/pull/475))
Expand Down
1 change: 1 addition & 0 deletions chopper/lib/chopper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export 'src/constants.dart';
export 'src/extensions.dart';
export 'src/interceptor.dart';
export 'src/http_logging_interceptor.dart';
export 'src/chopper_log_record.dart';
export 'src/request.dart';
export 'src/response.dart';
export 'src/utils.dart' hide mapToQuery;
2 changes: 1 addition & 1 deletion chopper/lib/src/chopper_log_record.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:chopper/src/request.dart';
import 'package:chopper/src/response.dart';

class ChopperLogRecord {
final class ChopperLogRecord {
const ChopperLogRecord(this.message, {this.request, this.response});

final String message;
Expand Down
2 changes: 1 addition & 1 deletion chopper/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: chopper
description: Chopper is an http client generator using source_gen, inspired by Retrofit
version: 7.0.3
version: 7.0.4
documentation: https://hadrien-lejard.gitbook.io/chopper
repository: https://github.com/lejard-h/chopper

Expand Down

0 comments on commit b5ef81e

Please sign in to comment.