Skip to content

Commit

Permalink
updated to version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil-merito committed Mar 21, 2023
1 parent 05589b0 commit dbeed0f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.1.1

- **Update**: All dependencies are updated to latest version.
- **Fix**: All known bugs fixed.

## 1.1.0

- **Documentation**: Updated documentation for the package.
Expand Down
1 change: 1 addition & 0 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ class _MyHomePageState extends State<MyHomePage> {
if (resource.isEmpty) return [];
switch (resource['status']) {
case 'SUCCESS':
// ignore: use_build_context_synchronously
Navigator.pop(context);
return resource['data'];
default:
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ publish_to: 'none'
version: 1.0.0+1

environment:
sdk: ">=2.17.6 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
flutter:
sdk: flutter

cupertino_icons: ^1.0.5
image_picker: ^0.8.6
image_picker: ^0.8.7
cloudinary:
path: ../

Expand Down
1 change: 0 additions & 1 deletion lib/cloudinary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ export 'package:dio/dio.dart';

export 'src/cloudinary_base.dart';
export 'src/enums/cloudinary_resource_type.dart';
export 'src/enums/cloudinary_resource_type.dart';
export 'src/models/cloudinary_response.dart';
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: cloudinary
description: A dart package to integrate Cloudinary API in Dart and Flutter.

version: 1.1.0
version: 1.1.1

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

dependencies:
dio: ^4.0.6
dio: ^5.0.3
crypto: ^3.0.2

dev_dependencies:
lints: ^2.0.1
test: ^1.22.1
test: ^1.23.1
path: ^1.8.3

0 comments on commit dbeed0f

Please sign in to comment.