Skip to content

Commit dbeed0f

Browse files
committed
updated to version 1.1.1
1 parent 05589b0 commit dbeed0f

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.1.1
4+
5+
- **Update**: All dependencies are updated to latest version.
6+
- **Fix**: All known bugs fixed.
7+
38
## 1.1.0
49

510
- **Documentation**: Updated documentation for the package.

example/lib/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@ class _MyHomePageState extends State<MyHomePage> {
388388
if (resource.isEmpty) return [];
389389
switch (resource['status']) {
390390
case 'SUCCESS':
391+
// ignore: use_build_context_synchronously
391392
Navigator.pop(context);
392393
return resource['data'];
393394
default:

example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ publish_to: 'none'
66
version: 1.0.0+1
77

88
environment:
9-
sdk: ">=2.17.6 <3.0.0"
9+
sdk: ">=2.18.0 <3.0.0"
1010

1111
dependencies:
1212
flutter:
1313
sdk: flutter
1414

1515
cupertino_icons: ^1.0.5
16-
image_picker: ^0.8.6
16+
image_picker: ^0.8.7
1717
cloudinary:
1818
path: ../
1919

lib/cloudinary.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ export 'package:dio/dio.dart';
44

55
export 'src/cloudinary_base.dart';
66
export 'src/enums/cloudinary_resource_type.dart';
7-
export 'src/enums/cloudinary_resource_type.dart';
87
export 'src/models/cloudinary_response.dart';

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: cloudinary
22
description: A dart package to integrate Cloudinary API in Dart and Flutter.
33

4-
version: 1.1.0
4+
version: 1.1.1
55

66
homepage: https://github.com/nixrajput
77
repository: https://github.com/nixrajput/cloudinary-dart
@@ -11,10 +11,10 @@ environment:
1111
sdk: ">=2.18.0 <3.0.0"
1212

1313
dependencies:
14-
dio: ^4.0.6
14+
dio: ^5.0.3
1515
crypto: ^3.0.2
1616

1717
dev_dependencies:
1818
lints: ^2.0.1
19-
test: ^1.22.1
19+
test: ^1.23.1
2020
path: ^1.8.3

0 commit comments

Comments
 (0)