Skip to content

Commit 6f0c55c

Browse files
committed
[ Confirm ] confirming the first official release of the library
1 parent c52ab38 commit 6f0c55c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.0.0
2+
3+
- Added the rest of models methods.
4+
- Added documentation and clarification
5+
- Figured the way of sending requests with files
6+
- Fixed the delete method issue resulting of returning nothin, with documenting the behavior of the library of it.
7+
18
## 0.9.5
29

310
- Added implementation of getting collection.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: replicate
2-
version: 0.9.5
2+
version: 1.0.0
33
description: A community-maintained Dart client package for Replicate.com, this package let you interact with Replicate.com APIs and create predictions from the available machine learning models.
44
repository: https://github.com/anasfik/replicate
55

test/replicate_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ void main() {
1414
});
1515

1616
test('with setting a key', () {
17-
Replicate.apiKey = '95b1d7bdebd1ac18e2552875cdef40529d599301';
17+
Replicate.apiKey = '<YOUR_API_KEY>';
1818
try {
1919
Replicate.instance;
2020
expect(Replicate.instance, isA<Replicate>());

0 commit comments

Comments
 (0)