Skip to content

Commit 88a0693

Browse files
authored
Merge pull request #71 from atoka93/master
Update analyzer constraints
2 parents 133b232 + 1f6f4ac commit 88a0693

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

openapi-generator-annotations/test/openapi_generator_annotations_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:openapi_generator_annotations/openapi_generator_annotations.dart';
21
import 'package:test/test.dart';
32

43
void main() {

openapi-generator-cli/bin/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void main(List<String> arguments) async {
1212

1313
var commands = [
1414
'-jar',
15-
"${"${binPath}"}",
15+
"${"$binPath"}",
1616
...arguments,
1717
];
1818
if (JAVA_OPTS.isNotEmpty) {

openapi-generator/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.3.1
2+
3+
- Update the _analyzer_ constraint
4+
15
## 3.3.0+1
26

37
- Bumped dart-ogurets (_dioAlt_) generator to 5.11

openapi-generator/lib/src/openapi_generator_runner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class OpenapiGenerator extends GeneratorForAnnotation<annots.Openapi> {
7676

7777
var arguments = [
7878
'-jar',
79-
"${"${binPath}"}",
79+
"${"$binPath"}",
8080
...command.split(separator).toList(),
8181
];
8282
if (JAVA_OPTS.isNotEmpty) {

openapi-generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: openapi_generator
22
description: Generator for openapi client sdk inspired by the npm implementation of openapi-generator-cli.
3-
version: 3.3.0+1
3+
version: 3.3.1
44
homepage: https://github.com/gibahjoe/openapi-generator-dart
55

66
environment:
@@ -11,7 +11,7 @@ dependencies:
1111
source_gen: '>=1.0.0 <=2.0.0'
1212
path: '>=1.0.0 <=2.0.0'
1313
openapi_generator_annotations: ^3.3.0
14-
analyzer: '>=1.4.0 <=3.0.0'
14+
analyzer: '>=1.4.0 <=5.0.0'
1515
openapi_generator_cli: ^3.3.0
1616

1717
dev_dependencies:

0 commit comments

Comments
 (0)