Skip to content

Commit

Permalink
🔖 release v8.0.3 (#642)
Browse files Browse the repository at this point in the history
* 🔖 release v8.0.3

# chopper

## 8.0.3

- Remove unnecessary library name

# chopper_generator

## 8.0.3

- Remove unnecessary library name

# chopper_built_value

## 8.0.3

- Remove unnecessary library name

---------

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
techouse authored Oct 1, 2024
1 parent b58a090 commit dc9fe2b
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 13 deletions.
4 changes: 4 additions & 0 deletions chopper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 8.0.3

- Remove unnecessary library name

## 8.0.2

- Properly escape single quote in cURL interceptor output ([#635](https://github.com/lejard-h/chopper/pull/635))
Expand Down
2 changes: 1 addition & 1 deletion chopper/lib/chopper.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Chopper is an http client generator using source_gen and inspired by Retrofit.
///
/// [Getting Started](https://hadrien-lejard.gitbook.io/chopper)
library chopper;
library;

export 'package:qs_dart/qs_dart.dart' show ListFormat;
export 'src/annotations.dart';
Expand Down
8 changes: 4 additions & 4 deletions 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: 8.0.2
version: 8.0.3
documentation: https://hadrien-lejard.gitbook.io/chopper
repository: https://github.com/lejard-h/chopper

Expand All @@ -12,7 +12,7 @@ dependencies:
http: ^1.1.0
logging: ^1.2.0
meta: ^1.9.1
qs_dart: ^1.2.3
qs_dart: ^1.2.4

dev_dependencies:
build_runner: ^2.4.9
Expand All @@ -23,10 +23,10 @@ dev_dependencies:
data_fixture_dart: ^2.2.0
faker: ^2.1.0
http_parser: ^4.0.2
lints: ^4.0.0
lints: ">=4.0.0 <6.0.0"
test: ^1.25.5
transparent_image: ^2.0.1
chopper_generator: ^8.0.1
chopper_generator: ^8.0.2

dependency_overrides:
chopper_generator:
Expand Down
4 changes: 4 additions & 0 deletions chopper_built_value/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.0.2

- Remove unnecessary library name

## 3.0.1

- Update dependencies and linters ([#615](https://github.com/lejard-h/chopper/pull/615))
Expand Down
6 changes: 3 additions & 3 deletions chopper_built_value/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: chopper_built_value
description: A built_value based Converter for Chopper.
version: 3.0.1
version: 3.0.2
documentation: https://hadrien-lejard.gitbook.io/chopper/converters/built-value-converter
repository: https://github.com/lejard-h/chopper

Expand All @@ -10,15 +10,15 @@ environment:
dependencies:
built_value: ^8.9.2
built_collection: ^5.1.1
chopper: ^8.0.0
chopper: ^8.0.2
http: ^1.1.0

dev_dependencies:
test: ^1.25.5
build_runner: ^2.4.9
build_test: ^2.2.2
built_value_generator: ^8.9.2
lints: ^4.0.0
lints: ">=4.0.0 <6.0.0"

dependency_overrides:
chopper:
Expand Down
2 changes: 1 addition & 1 deletion chopper_built_value/test/serializers.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library serializers;
library;

import 'package:built_value/serializer.dart';

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

## 8.0.3

- Remove unnecessary library name

## 8.0.2

- Remove duplicate null-coalescing `responseTypeReference` ([#634](https://github.com/lejard-h/chopper/pull/634))
Expand Down
2 changes: 1 addition & 1 deletion chopper_generator/lib/chopper_generator.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
library chopper_generator.dart;
library;

export 'src/builder_factory.dart';
6 changes: 3 additions & 3 deletions chopper_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: chopper_generator
description: Chopper is an http client generator using source_gen, inspired by Retrofit
version: 8.0.2
version: 8.0.3
documentation: https://hadrien-lejard.gitbook.io/chopper
repository: https://github.com/lejard-h/chopper

Expand All @@ -11,7 +11,7 @@ dependencies:
analyzer: ^6.4.1
build: ^2.4.1
built_collection: ^5.1.1
chopper: ^8.0.1
chopper: ^8.0.2
code_builder: ^4.10.0
dart_style: ^2.3.6
logging: ^1.2.0
Expand All @@ -24,7 +24,7 @@ dev_dependencies:
build_runner: ^2.4.9
build_verify: ^3.1.0
http: ^1.1.0
lints: ^4.0.0
lints: ">=4.0.0 <6.0.0"
test: ^1.25.5

dependency_overrides:
Expand Down

0 comments on commit dc9fe2b

Please sign in to comment.