Skip to content

Commit

Permalink
Update changelogs and version
Browse files Browse the repository at this point in the history
  • Loading branch information
farmery committed Sep 6, 2024
1 parent a73ab04 commit bcb7b92
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
16 changes: 16 additions & 0 deletions generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 9.1.0

- Added `@TypedExtras` to pass extra options to dio requests using custom annotations.

Example :

```dart
@TypedExtrasSubClass(
id: 'abcd',
count: 5,
shouldProceed: true,
)
@http.POST('/path/')
Future<String> myMethod(@Extras() Map<String, dynamic> extras);
```

## 9.0.0

- Require Dart 3.3
Expand Down
2 changes: 1 addition & 1 deletion generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ topics:
- rest
- retrofit
- codegen
version: 9.0.0
version: 9.1.0
environment:
sdk: '>=3.3.0 <4.0.0'

Expand Down
16 changes: 16 additions & 0 deletions retrofit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 4.4.0

- Added `@TypedExtras` to pass extra options to dio requests using custom annotations.

Example :

```dart
@TypedExtrasSubClass(
id: 'abcd',
count: 5,
shouldProceed: true,
)
@http.POST('/path/')
Future<String> myMethod(@Extras() Map<String, dynamic> extras);
```

## 4.3.0

- Required Dart 2.19
Expand Down
2 changes: 1 addition & 1 deletion retrofit/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ topics:
- rest
- dio
- retrofit
version: 4.3.0
version: 4.4.0
environment:
sdk: '>=2.19.0 <4.0.0'

Expand Down

0 comments on commit bcb7b92

Please sign in to comment.