Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed Jun 29, 2023
1 parent 29046f2 commit fd60c2a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Cloudinary Dart SDK
## About
The Cloudinary Dart SDK allows you to quickly and easily integrate your application with Cloudinary.
Effortlessly optimize and transform your cloud's assets.
As Flutter is build on the Dart language, the Dart SDK reference is an essential resource for understanding and utilizing the capabilities of the Flutter SDK, as well. For more information about the Flutter SDK, see the [Cloudinary Flutter documentation](https://cloudinary.com/documentation/flutter_integration).

### Note
This Readme provides basic installation and usage information.
Expand All @@ -22,14 +23,14 @@ Transform and optimize assets. Visit our documentation to learn more about [medi
## Version Support
| SDK Version | Dart Version |
|-------------|--------------|
| 0.10.0 | > 1.0 |
| 1.0.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.10.0
cloudinary_url_gen: ^1.0.0
```
## Usage
Expand Down
3 changes: 3 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## 1.0.0
- General Access

## 0.9.0
- Implement Upload API
4 changes: 2 additions & 2 deletions api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ 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.10.0
cloudinary_api: ^1.0.0
cloudinary_url_gen: ^1.0.0
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion api/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cloudinary_api
description: Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline
version: 0.9.0
version: 1.0.0
homepage: https://www.cloudinary.com
repository: https://github.com/cloudinary/cloudinary_dart

Expand Down
3 changes: 3 additions & 0 deletions url_gen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.0
- General Access

## 0.10.0
- Fix version to accept int and String
- Add VideoEdit actions
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.10.0 | > 1.0 |
| 1.0.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.10.0
cloudinary_url_gen: ^1.0.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.10.0';
String sdkVersion = '1.0.0';

class Cloudinary {
late CloudinaryConfig config;
Expand Down
2 changes: 1 addition & 1 deletion url_gen/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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.10.0
version: 1.0.0
homepage: https://www.cloudinary.com
repository: https://github.com/cloudinary/cloudinary_dart

Expand Down

0 comments on commit fd60c2a

Please sign in to comment.