Skip to content

Commit

Permalink
Version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed Jun 12, 2023
1 parent dde07cf commit 7a52a8e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Transform and optimize assets. Visit our documentation to learn more about [medi
## Version Support
| SDK Version | Dart Version |
|-------------|--------------|
| 0.0.11 | > 1.0 |
| 0.10.0 | > 1.0 |

## Installation
To use this SDK, add cloudinary as a [dependency in your pubspec.yaml file](https://flutter.dev/platform-plugins/).

```yaml
dependencies:
cloudinary_url_gen: ^0.9.0
cloudinary_url_gen: ^0.10.0
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To use this SDK, add cloudinary as a [dependency in your pubspec.yaml file](http
```yaml
dependencies:
cloudinary_api: ^0.9.0
cloudinary_url_gen: ^0.9.0
cloudinary_url_gen: ^0.10.0
```
## Usage
Expand Down
4 changes: 2 additions & 2 deletions api/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ homepage: https://www.cloudinary.com
repository: https://github.com/cloudinary/cloudinary_dart

environment:
sdk: '>=2.17.5 <3.0.0'
sdk: '>=2.17.5 <4.0.0'

dependencies:
http: ^0.13.5
async: ^2.10.0
crypto: ^3.0.2
convert: ^3.0.2
http_parser: ^4.0.2
cloudinary_url_gen: ^0.9.0
cloudinary_url_gen: ^0.10.0

dev_dependencies:
lints: ^2.0.0
Expand Down
5 changes: 5 additions & 0 deletions url_gen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.10.0
- Fix version to accept int and String
- Add VideoEdit actions
- Fix analytics token

## 0.9.0
- Change to url_gen package

Expand Down
4 changes: 2 additions & 2 deletions url_gen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Transform and optimize assets. Visit our documentation to learn more about [medi
## Version Support
| SDK Version | Dart Version |
|-------------|--------------|
| 0.0.11 | > 1.0 |
| 0.10.0 | > 1.0 |

## Installation
To use this SDK, add cloudinary as a [dependency in your pubspec.yaml file](https://flutter.dev/platform-plugins/).

```yaml
dependencies:
cloudinary_url_gen: ^0.9.0
cloudinary_url_gen: ^0.10.0
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion url_gen/lib/cloudinary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'util/environment.dart';

import 'asset/cld_asset.dart';

String sdkVersion = '0.9.0';
String sdkVersion = '0.10.0';

class Cloudinary {
late CloudinaryConfig config;
Expand Down
4 changes: 2 additions & 2 deletions url_gen/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: cloudinary_url_gen
description: Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline
version: 0.9.0
version: 0.10.0
homepage: https://www.cloudinary.com
repository: https://github.com/cloudinary/cloudinary_dart

environment:
sdk: '>=2.17.5 <3.0.0'
sdk: '>=2.17.5 <4.0.0'

dependencies:
crypto: ^3.0.2
Expand Down

0 comments on commit 7a52a8e

Please sign in to comment.